diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..18a07a7fb7fd9ea50a33408c0237252c9b5dd86a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +images/** filter=lfs diff=lfs merge=lfs -text +processed/plots/*.png filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..d5f2eea1868ea515cc86809daf8bac2386d89b23 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +__pycache__/ +*.ipynb_checkpoints +*.log diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..4c49c2576ad844954cfbbeaaa48f8f2396825c97 --- /dev/null +++ b/README.md @@ -0,0 +1,103 @@ +--- +license: mit +language: +- en +pretty_name: TactileEval +size_categories: +- 10K///*.{jpg,png} +processed/ + records_full.jsonl + splits/{train,val,test}.jsonl + family_splits/F{1..6}/{train,val,test}.jsonl + dataset_summary.{csv,json} +``` + +JSONL fields: + +| Field | Description | +|-------|-------------| +| `pair_id` | `NaturalRel::TactileRel` identifier | +| `task_family` | Task code (e.g., F1QL) | +| `option_id` | Option identifier (e.g., `too_thick`) | +| `option_description` | Plain-language description | +| `natural_image`, `tactile_image` | Paths relative to `images/` | +| `votes_total`, `positives`, `negatives` | Vote stats | +| `label` | Majority label (0/1) | +| `vote_fraction` | positives / total | +| `status_counts` | counts of approved/submitted ballots | + +## Splits + +- `splits/train.jsonl` (11,348 records) +- `splits/val.jsonl` (1,341 records) +- `splits/test.jsonl` (1,406 records) + +`family_splits/` mirrors these splits per object family. + +## Usage + +```python +from datasets import load_dataset + +ds = load_dataset("Adnank1998/TactileEval", name="full", split="train") +family = load_dataset("Adnank1998/TactileEval", name="family_f1", split="train") +example = ds[0] +print(example["natural_image"], example["label"]) +``` + +Images are stored under `images/`; join the relative path returned in +`natural_image`/`tactile_image` with the local dataset root to load the files. + +Available configurations: +- `full`: All families (default). +- `family_f1` through `family_f6`: Per-family subsets matching the paper splits. + +Each split lives in `processed/`, enabling the Hugging Face dataset viewer via +the bundled `dataset_infos.json`. + +Available configurations: +- `full`: All families (default). +- `family_f1` … `family_f6`: Per-family subsets matching the paper splits. + +Each split lives in `processed/`, so the Hugging Face dataset viewer can load the files directly via the bundled `dataset_infos.json`. + + +## Citation + +``` +@misc{khan2026tactileevalstepautomatedfinegrained, + title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, + author={Adnan Khan and Abbas Akkasi and Majid Komeili}, + year={2026}, + eprint={2604.19829}, + archivePrefix={arXiv}, + primaryClass={cs.CV}, + url={https://arxiv.org/abs/2604.19829} +} +``` + +## Contact + +Questions? Open an issue or email adnankhan5@cmail.carleton.ca. + +## Acknowledgements + +This work was supported in part by MITACS and the Digital Alliance of Canada. +We thank the student volunteers at the Intelligent Machines Lab (iML), Carleton +University, for their contributions, and Joshua Olojede and Hoda Vafaeesefat +for their help with the AMT annotation environment. diff --git a/build_dataset_infos.py b/build_dataset_infos.py new file mode 100644 index 0000000000000000000000000000000000000000..493041f2caf833e40410a85392545d7fc6dc8005 --- /dev/null +++ b/build_dataset_infos.py @@ -0,0 +1,109 @@ +from __future__ import annotations + +import json +from pathlib import Path + +from datasets import Features, Sequence, Value + +ROOT = Path(__file__).parent + +FEATURES = Features( + { + "pair_id": Value("string"), + "task_family": Value("string"), + "task_id": Value("string"), + "option_id": Value("string"), + "option_description": Value("string"), + "natural_image": Value("string"), + "tactile_image": Value("string"), + "votes_total": Value("int32"), + "positives": Value("int32"), + "negatives": Value("int32"), + "vote_fraction": Value("float32"), + "label": Value("int32"), + "source_assignments": Value("int32"), + "status_counts": Sequence( + Features({ + "status": Value("string"), + "count": Value("int32"), + }) + ), + "used_consensus": Value("bool"), + } +) + +CONFIGS = { + "full": { + "description": "All families and options with the official splits.", + "data_files": { + "train": "processed/splits/train.jsonl", + "validation": "processed/splits/val.jsonl", + "test": "processed/splits/test.jsonl", + }, + }, +} + +for family in ["F1", "F2", "F3", "F4", "F5", "F6"]: + CONFIGS[f"family_{family.lower()}"] = { + "description": f"Family {family} only.", + "data_files": { + "train": f"processed/family_splits/{family}/train.jsonl", + "validation": f"processed/family_splits/{family}/val.jsonl", + "test": f"processed/family_splits/{family}/test.jsonl", + }, + } + + +def count_examples(path: Path) -> int: + with path.open("r", encoding="utf-8") as handle: + return sum(1 for _ in handle) + + +def build_split_info(rel_path: str) -> tuple[int, int]: + path = ROOT / rel_path + num_bytes = path.stat().st_size + num_examples = count_examples(path) + return num_examples, num_bytes + + +def build_config_entry(name: str, data_files: dict) -> dict: + splits = {} + dataset_size = 0 + for split_name, rel_path in data_files.items(): + num_examples, num_bytes = build_split_info(rel_path) + dataset_size += num_bytes + splits[split_name] = { + "name": split_name, + "num_examples": num_examples, + "num_bytes": num_bytes, + } + return { + "description": CONFIGS[name]["description"], + "citation": """@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}""", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": FEATURES.to_dict(), + "splits": splits, + "download_size": dataset_size, + "dataset_size": dataset_size, + "config_name": name, + "data_files": { + split: [{"filename": rel_path}] for split, rel_path in data_files.items() + }, + "default_validation_split": "validation" if "validation" in data_files else None, + } + + +def main() -> None: + info = { + name: build_config_entry(name, cfg["data_files"]) + for name, cfg in CONFIGS.items() + } + output_path = ROOT / "dataset_infos.json" + with output_path.open("w", encoding="utf-8") as handle: + json.dump(info, handle, indent=2) + print(f"Wrote {output_path}") + + +if __name__ == "__main__": + main() diff --git a/dataset_infos.json b/dataset_infos.json new file mode 100644 index 0000000000000000000000000000000000000000..409f962ebb7711a419d6b8a9d594ed18c3ad8e51 --- /dev/null +++ b/dataset_infos.json @@ -0,0 +1,828 @@ +{ + "full": { + "description": "All families and options with the official splits.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 11348, + "num_bytes": 6564180 + }, + "validation": { + "name": "validation", + "num_examples": 1341, + "num_bytes": 773094 + }, + "test": { + "name": "test", + "num_examples": 1406, + "num_bytes": 812899 + } + }, + "download_size": 8150173, + "dataset_size": 8150173, + "config_name": "full", + "data_files": { + "train": [ + { + "filename": "processed/splits/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/splits/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/splits/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + }, + "family_f1": { + "description": "Family F1 only.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 2682, + "num_bytes": 1492281 + }, + "validation": { + "name": "validation", + "num_examples": 320, + "num_bytes": 177294 + }, + "test": { + "name": "test", + "num_examples": 288, + "num_bytes": 160078 + } + }, + "download_size": 1829653, + "dataset_size": 1829653, + "config_name": "family_f1", + "data_files": { + "train": [ + { + "filename": "processed/family_splits/F1/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/family_splits/F1/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/family_splits/F1/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + }, + "family_f2": { + "description": "Family F2 only.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 3846, + "num_bytes": 2266670 + }, + "validation": { + "name": "validation", + "num_examples": 462, + "num_bytes": 271470 + }, + "test": { + "name": "test", + "num_examples": 524, + "num_bytes": 307379 + } + }, + "download_size": 2845519, + "dataset_size": 2845519, + "config_name": "family_f2", + "data_files": { + "train": [ + { + "filename": "processed/family_splits/F2/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/family_splits/F2/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/family_splits/F2/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + }, + "family_f3": { + "description": "Family F3 only.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 856, + "num_bytes": 486193 + }, + "validation": { + "name": "validation", + "num_examples": 92, + "num_bytes": 52059 + }, + "test": { + "name": "test", + "num_examples": 102, + "num_bytes": 57859 + } + }, + "download_size": 596111, + "dataset_size": 596111, + "config_name": "family_f3", + "data_files": { + "train": [ + { + "filename": "processed/family_splits/F3/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/family_splits/F3/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/family_splits/F3/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + }, + "family_f4": { + "description": "Family F4 only.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 962, + "num_bytes": 580196 + }, + "validation": { + "name": "validation", + "num_examples": 116, + "num_bytes": 69675 + }, + "test": { + "name": "test", + "num_examples": 140, + "num_bytes": 84120 + } + }, + "download_size": 733991, + "dataset_size": 733991, + "config_name": "family_f4", + "data_files": { + "train": [ + { + "filename": "processed/family_splits/F4/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/family_splits/F4/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/family_splits/F4/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + }, + "family_f5": { + "description": "Family F5 only.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 1874, + "num_bytes": 1090186 + }, + "validation": { + "name": "validation", + "num_examples": 226, + "num_bytes": 130950 + }, + "test": { + "name": "test", + "num_examples": 230, + "num_bytes": 133534 + } + }, + "download_size": 1354670, + "dataset_size": 1354670, + "config_name": "family_f5", + "data_files": { + "train": [ + { + "filename": "processed/family_splits/F5/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/family_splits/F5/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/family_splits/F5/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + }, + "family_f6": { + "description": "Family F6 only.", + "citation": "@misc{khan2026tactileevalstepautomatedfinegrained, title={TactileEval: A Step Towards Automated Fine-Grained Evaluation and Editing of Tactile Graphics}, author={Adnan Khan and Abbas Akkasi and Majid Komeili}, year={2026}, eprint={2604.19829}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2604.19829}}", + "homepage": "https://tactileeval.github.io/", + "license": "mit", + "features": { + "pair_id": { + "dtype": "string", + "_type": "Value" + }, + "task_family": { + "dtype": "string", + "_type": "Value" + }, + "task_id": { + "dtype": "string", + "_type": "Value" + }, + "option_id": { + "dtype": "string", + "_type": "Value" + }, + "option_description": { + "dtype": "string", + "_type": "Value" + }, + "natural_image": { + "dtype": "string", + "_type": "Value" + }, + "tactile_image": { + "dtype": "string", + "_type": "Value" + }, + "votes_total": { + "dtype": "int32", + "_type": "Value" + }, + "positives": { + "dtype": "int32", + "_type": "Value" + }, + "negatives": { + "dtype": "int32", + "_type": "Value" + }, + "vote_fraction": { + "dtype": "float32", + "_type": "Value" + }, + "label": { + "dtype": "int32", + "_type": "Value" + }, + "source_assignments": { + "dtype": "int32", + "_type": "Value" + }, + "status_counts": { + "status": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "count": { + "feature": { + "dtype": "int32", + "_type": "Value" + }, + "_type": "List" + } + }, + "used_consensus": { + "dtype": "bool", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 1128, + "num_bytes": 648654 + }, + "validation": { + "name": "validation", + "num_examples": 125, + "num_bytes": 71646 + }, + "test": { + "name": "test", + "num_examples": 122, + "num_bytes": 69929 + } + }, + "download_size": 790229, + "dataset_size": 790229, + "config_name": "family_f6", + "data_files": { + "train": [ + { + "filename": "processed/family_splits/F6/train.jsonl" + } + ], + "validation": [ + { + "filename": "processed/family_splits/F6/val.jsonl" + } + ], + "test": [ + { + "filename": "processed/family_splits/F6/test.jsonl" + } + ] + }, + "default_validation_split": "validation" + } +} \ No newline at end of file diff --git a/images/Animals_and_Creatures/Bat/Natural/1.jpg b/images/Animals_and_Creatures/Bat/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88ef8e522bbbc3818710397c5d00a116ba3ca717 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6035475fb6d5c62a3f7823df3bfb7e1fb8af3bb4486d27a400df1de032bcfafb +size 40217 diff --git a/images/Animals_and_Creatures/Bat/Natural/10.jpg b/images/Animals_and_Creatures/Bat/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d65db362add9bae681911c4bd2d29fd0443f12a --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32ef1cffddcb3f5bf421be2c69425af4998ed55e1f170f13566a7563d9b8c1a +size 61919 diff --git a/images/Animals_and_Creatures/Bat/Natural/10_2.png b/images/Animals_and_Creatures/Bat/Natural/10_2.png new file mode 100644 index 0000000000000000000000000000000000000000..def7d04ac26a31a034a8bd452cd0bd4811bd3aa9 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/10_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1899a6fc28ad3ccc603d3c576abfc2e616b349867b0ff4fe5f3957710e397dac +size 213978 diff --git a/images/Animals_and_Creatures/Bat/Natural/11.jpg b/images/Animals_and_Creatures/Bat/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..154b5f5d2802954f59a99c8b9b06b29ec56e3840 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b60da784dc54d39862c34d84412ab1b01a057fa61cf94bcd6a068cb3b68dd69 +size 14503 diff --git a/images/Animals_and_Creatures/Bat/Natural/11_2.png b/images/Animals_and_Creatures/Bat/Natural/11_2.png new file mode 100644 index 0000000000000000000000000000000000000000..5753d6034c83d7bec2e983b586331722173a497e --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/11_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfea3c6d9f4689fdbf7fdfe1c93904b4803ebdbcc1f8408267127a7b0383911e +size 102841 diff --git a/images/Animals_and_Creatures/Bat/Natural/12.png b/images/Animals_and_Creatures/Bat/Natural/12.png new file mode 100644 index 0000000000000000000000000000000000000000..dab5d7590a4dc4a579d4973ab0f1e3c0c0952670 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060c1b36759108aab91a3d5292a885fd02055ce8b5c23bbe81a64b5ba0f7f58c +size 257968 diff --git a/images/Animals_and_Creatures/Bat/Natural/12_2.jpg b/images/Animals_and_Creatures/Bat/Natural/12_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03c13eb57b84174f33ca1dbc2c70ef54eb8a9bb0 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/12_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa307f19d289fc89fe1793b17e75df026999fe023a8b584203c95a792bf520dc +size 40159 diff --git a/images/Animals_and_Creatures/Bat/Natural/13.png b/images/Animals_and_Creatures/Bat/Natural/13.png new file mode 100644 index 0000000000000000000000000000000000000000..618e99107f08f688adb8048af24b6e5b5cb76af2 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8f545b71836ac8ce1f4b78b26b6d077f2358a9927beb917ef68a888167a24c +size 91028 diff --git a/images/Animals_and_Creatures/Bat/Natural/13_2.jpg b/images/Animals_and_Creatures/Bat/Natural/13_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ea659e53deecee9912d94ba07da94731c8563e0 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/13_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ef977d2be7c1cbc834a45f4c2f6ed936b8f0714fb9fade6e1315ebc9bbc8ff +size 14109 diff --git a/images/Animals_and_Creatures/Bat/Natural/13_3.jpg b/images/Animals_and_Creatures/Bat/Natural/13_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ae26bfb1882ffd7b6b6192a1b46514d7fded2bb --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/13_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2e78d6d599ccb332a17053993f418c858d831bbfd45a5265583afbfbe57655 +size 12682 diff --git a/images/Animals_and_Creatures/Bat/Natural/14.png b/images/Animals_and_Creatures/Bat/Natural/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c3b381d9bd122c551f26afdcf961dade442c4ed6 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8982e374783afa78c121dc74fd2e1979e10ffddf84c68d89d64557a4e16ffd16 +size 209780 diff --git a/images/Animals_and_Creatures/Bat/Natural/15.jpg b/images/Animals_and_Creatures/Bat/Natural/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8eeb9081f2194469b60673198327c90f7056a3e2 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1312afa8dd9941da8718b6146b07ce004d2cb75faf2827850e966610e1aa92f +size 30416 diff --git a/images/Animals_and_Creatures/Bat/Natural/15.png b/images/Animals_and_Creatures/Bat/Natural/15.png new file mode 100644 index 0000000000000000000000000000000000000000..933642d20fc6d92f082ae6c45db37056a44d2d3d --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c6e14ca56397f57cde496de4b4fb2070baea13a692309844c582a2f2c75dc7 +size 137924 diff --git a/images/Animals_and_Creatures/Bat/Natural/16.jpg b/images/Animals_and_Creatures/Bat/Natural/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdb111dfe3f3cdb0a5027167a8f43290df8dab3e --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26c4aa4b7398cc1944b30a2e5d6453cbda473ed42910e6bf6bcd3dedd514ea9 +size 35498 diff --git a/images/Animals_and_Creatures/Bat/Natural/2.jpg b/images/Animals_and_Creatures/Bat/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..341f630ab5cd7763b7dacdb9b93393c9b7d76b54 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34d33db6b49444e282a064c4a6029b3a07aee7884a2f43f4052a06ec7912fe1 +size 91833 diff --git a/images/Animals_and_Creatures/Bat/Natural/3.jpg b/images/Animals_and_Creatures/Bat/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4c92b3943384dd22745e3a4da03ce5cc51b444c --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c378fb2525338dd505330b2a9a717109ea814701b0504fd64909b2bf7ab610cc +size 42816 diff --git a/images/Animals_and_Creatures/Bat/Natural/3_2.png b/images/Animals_and_Creatures/Bat/Natural/3_2.png new file mode 100644 index 0000000000000000000000000000000000000000..824a5c3b3cc7eacbf397da710f24a81d0f149186 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/3_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6555b1ec26b8549610d50a09d476a94f5d64409dbacae8a1df74d1026bf02ecc +size 268652 diff --git a/images/Animals_and_Creatures/Bat/Natural/4.jpg b/images/Animals_and_Creatures/Bat/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b48565ecc4e77b8ba590c80507f97c7099e563b --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ab1d9db16f31156b117bb9eaac705a8811abec9cdc451bdcf4e90ac4093eb2 +size 17187 diff --git a/images/Animals_and_Creatures/Bat/Natural/5.jpg b/images/Animals_and_Creatures/Bat/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abc10e865795115011e645d9266ff154c087d0c4 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb865e521f2044a6758ba38b686df7b8690d68d1806a1569d1ba634004c4be89 +size 103109 diff --git a/images/Animals_and_Creatures/Bat/Natural/6.jpg b/images/Animals_and_Creatures/Bat/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c40f8573ddf35dd728fb9114267e8000a6669b49 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9baeaacf84dcc0f39af23e13a94e0560578a9027ad57492c4ab044755f53c5a7 +size 29458 diff --git a/images/Animals_and_Creatures/Bat/Natural/6_2.png b/images/Animals_and_Creatures/Bat/Natural/6_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a6fd4dc5a1350543e2f3b4ff5281150e91ef1af7 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/6_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d6ced341ac2f35fda3f8e285e82e03387943fe0f1aa0b5f5c2dd8c3bb02f50 +size 162603 diff --git a/images/Animals_and_Creatures/Bat/Natural/7.jpg b/images/Animals_and_Creatures/Bat/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01a3c664ae6673bdfeae6cd2ad44666819f731cc --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e34d4f66e2d9467e8839c0d18295582147708384bd2bd0d46c4b4895ea0bb36 +size 34414 diff --git a/images/Animals_and_Creatures/Bat/Natural/7_2.png b/images/Animals_and_Creatures/Bat/Natural/7_2.png new file mode 100644 index 0000000000000000000000000000000000000000..f98b8f8e68057c387cb55046d22a1c83ee23841e --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/7_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6340c1a47e058495f4d6ea6952d54e76cd896a0b374632e663ae2770b0d74ea6 +size 258885 diff --git a/images/Animals_and_Creatures/Bat/Natural/7_3.jpg b/images/Animals_and_Creatures/Bat/Natural/7_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b9660fb34920804c5182742c8cc626450a79638 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/7_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b45a90455d2ac9c649215f4b0cf05409a28981782306e5b4357f03c346a4d6 +size 22142 diff --git a/images/Animals_and_Creatures/Bat/Natural/8.png b/images/Animals_and_Creatures/Bat/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3d3617dba7f83a0c77519921fe5d5095c6df9a2b --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8663fdfd84fc675f92bf4cac3b2b095ffb3ca15c0a0932ee9990442ff13415bc +size 97430 diff --git a/images/Animals_and_Creatures/Bat/Natural/8_2.jpg b/images/Animals_and_Creatures/Bat/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..282d96ca1c008ca7648d5affa0f76eabe8b76076 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fddb4edec197344b9374140578a5ad40d068d882a05b76defd47d8884c0b971e +size 30626 diff --git a/images/Animals_and_Creatures/Bat/Natural/9.jpg b/images/Animals_and_Creatures/Bat/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..848bdea0ed239ec68e958072c1fdf944a8baca70 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b755039d5a09fa2a5c44df7aa9df6f910412ec7f4c5a18ad3f99c3b224d8203 +size 16016 diff --git a/images/Animals_and_Creatures/Bat/Natural/9_2.png b/images/Animals_and_Creatures/Bat/Natural/9_2.png new file mode 100644 index 0000000000000000000000000000000000000000..c48f9fda00df7805f47f79728ac6b0747f6e6ecb --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/9_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db34684cc03d0170ac6de09d747084b2530a12ce620702f4c641247632a9f1b +size 211817 diff --git a/images/Animals_and_Creatures/Bat/Natural/9_3.jpg b/images/Animals_and_Creatures/Bat/Natural/9_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..175754230189ceb0d47cb8bcfe9b3b00fefc4705 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/9_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c244ac16e52391054a86cb9b8d6fd19c55d545733e8dc23a796f400acd3bb978 +size 20740 diff --git a/images/Animals_and_Creatures/Bat/Natural/9_4.jpg b/images/Animals_and_Creatures/Bat/Natural/9_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31bada4f95c775c6e10e15c015c4c03e385aa072 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Natural/9_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977694fa95e655cc547abc200e974b90520311753579137ef72009acd30d6cce +size 42468 diff --git a/images/Animals_and_Creatures/Bat/Tactile/1.jpeg b/images/Animals_and_Creatures/Bat/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3ea54da6cd350268884019ef7a58ca189c98c872 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be452423a9b66f39d038158eb120fd89831f5423ac9bfd2b541624232ee89afd +size 39060 diff --git a/images/Animals_and_Creatures/Bat/Tactile/10.jpeg b/images/Animals_and_Creatures/Bat/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dc7cea95a6fc75a260ea3c1aa3f11e13a5572802 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f76da9d118e9a49726abee9b8aa4a237eedc6f137e5b405ebc55ab6d8e44bc +size 23205 diff --git a/images/Animals_and_Creatures/Bat/Tactile/11.jpeg b/images/Animals_and_Creatures/Bat/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d1eb7bb17b4da00598d3c0037c78b0d5346a1906 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff2a13143ea5e7700798dbe2a2ed5d21a40a20d9e516fe43c99e20e3be351f1 +size 31879 diff --git a/images/Animals_and_Creatures/Bat/Tactile/12.jpeg b/images/Animals_and_Creatures/Bat/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..504f0229edf131c786abe00adec9ef2e886e73b2 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe875d1a1216111fba4370159986a4f577b961a73148a274de4f3077d7cd7031 +size 41250 diff --git a/images/Animals_and_Creatures/Bat/Tactile/13.jpeg b/images/Animals_and_Creatures/Bat/Tactile/13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cdbc6cd07280be717ae8a62da6b096ba2b7745a3 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3873a4b27202dc196fd796e421eaaa81beabad8398b4f1dcb30ee4d556497046 +size 21491 diff --git a/images/Animals_and_Creatures/Bat/Tactile/2.jpeg b/images/Animals_and_Creatures/Bat/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..940b057c101fb239ca704bd886eb6529ef641bd8 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41399d49bcdcb06f445be1a1c0c6ce749ede267cc2f13c55eb4c8f1efb7b503c +size 12115 diff --git a/images/Animals_and_Creatures/Bat/Tactile/3.jpeg b/images/Animals_and_Creatures/Bat/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e9b260c174450a946cc4c8f4b37f711fee6a6a65 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca7d6500912f9f526ad013224169f358e30f156c4da7a843aac4b5fdc466375 +size 53826 diff --git a/images/Animals_and_Creatures/Bat/Tactile/4.jpeg b/images/Animals_and_Creatures/Bat/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e3cd12afde8266a9e4d8c087913b49e46f85808c --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06dfab93f75ea42988bf9d1168472ca482ef3dd51972f23e2e8fce5191060100 +size 27474 diff --git a/images/Animals_and_Creatures/Bat/Tactile/5.png b/images/Animals_and_Creatures/Bat/Tactile/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a9325c953bd86662e6c4b92f77d5674c0e31e51a --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4fdb001357a0c496858e1bf44f1574efde46f243d3cb6bcf47fd213b658a4d8 +size 747983 diff --git a/images/Animals_and_Creatures/Bat/Tactile/6.jpeg b/images/Animals_and_Creatures/Bat/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6c901fc9c2c3f2c4707f55ddec7cb42707a553d9 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06007a0638b40afeba619df7babcc24ba414c5b8bf3ec392e6e3d1a71c970fbd +size 18921 diff --git a/images/Animals_and_Creatures/Bat/Tactile/7.jpeg b/images/Animals_and_Creatures/Bat/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8136ef3893a3d6e6c56ff5d843921fb5eccc23a5 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d57ce07ab4eceef7bb704421c39a3f70b517b47a6bbd29ab5fb9838c57a8553 +size 37637 diff --git a/images/Animals_and_Creatures/Bat/Tactile/8.jpeg b/images/Animals_and_Creatures/Bat/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d93961bfb6c8bbf380ca817119b6fafb8a02f113 --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933f1ebf3947a78886720fa8883d5942be7f88c6c4b1aadece6ebc2760c590cc +size 17114 diff --git a/images/Animals_and_Creatures/Bat/Tactile/9.jpeg b/images/Animals_and_Creatures/Bat/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6bfdbcc9acc509930a9a7aacfe2de60864fd584b --- /dev/null +++ b/images/Animals_and_Creatures/Bat/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8422e80a71066b5585a0e551ff479d9ebccfdc172acac2c37fe8417d55f3e7d0 +size 30846 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_1.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..197ddc3e4c0cb2a8027a2483f8606dd26db6b584 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f93c33548eb140cdd415f4307dd597a2fa6d92e5142d6654528540d8080f2 +size 43917 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_10.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..940a9a05a32fb7e688351b78908773f105f06f4d --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195686708987bfb285d42c479bfcc2c7e187d18cafd9bff581c975df8f72e045 +size 32556 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_11.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..763ee2ce4855b3b6a8bfe6bb3529e81556aa72af --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a198c2677a25e7d3f32d244161ccbc575644c1dce4ff8dd0720b0aa692d11428 +size 100092 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_12.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edda2c42663594096d203af8bf4115d0421c880f --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9c3ebe58943a3500894c51cc8d5427a30246bf9ce2211c944b04de7cf157cc +size 39511 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_13.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b51e7efaf3e1c05bcedb55f1db0151b04f40011 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda2e6b577c932157c6c8f9fbffaa0defaaeecd2201335c26b7b53575122f782 +size 87319 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_2.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59a2d7b7ae06cfffbee955e9d7191af4e6306313 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252182d69a33316938e1f2ff51fd8a55651c70eb66121ec2de2b527540bcaaab +size 71872 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_3.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7578c3d0fc10aa8a5bdbd1d4c13cbfd5a4d63286 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29dfa243f545c562479802552f39cc1defaa64a940d7614e5350a56f3b48713a +size 98546 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_4.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42075c610ed04ff50a0380b41e6fd4d75f6c5129 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a6fea6b7aa415afc481e791805ce16581e3458e795d83f8ddf5f43a640065b +size 49949 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_5.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d27a61be1870356aa5a8a74489207b0a3a56721 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82962f4abb7e6effff30226e1315beb29304e1f39866a2f876d53b23a1cda332 +size 217078 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_6.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4fe7f8034d889c1179dab06c2f280fb8fbd48e8 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa481a71efe8838b62cf2231358adb7c5faa86bab19fc8e64215c36887005f4 +size 131626 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_7.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5634a8ba973a187a0fda98f3f70b19ac287506ef --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a03a0b3abfc10bc9ec7845117b5e8b3b1a3ca471b59779b4f51093a2ee75656 +size 235711 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_8.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddd6a530a638e48acadc0115eb3f28e9fd94c388 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7011662c355040cd79e4cd83d5bd9651c5f325e7d55cc2fb9d059633e8f73527 +size 28055 diff --git a/images/Animals_and_Creatures/Bee/Natural/Bee_9.jpg b/images/Animals_and_Creatures/Bee/Natural/Bee_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4121eff79b8bd7a11c693d8dc3e8473c609a3fed --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Natural/Bee_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159f93e88b0dadf9432a0080e6527043429bb359b7e32da41ae7d4a2a794c404 +size 132077 diff --git a/images/Animals_and_Creatures/Bee/Tactile/1.jpg b/images/Animals_and_Creatures/Bee/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd71774ed1ccf2e1475afc0da65beabb0ebb7833 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f290a546e1f2b6d8a977ab4fed4a624f0a7a3f28a1f9e653ba43883768f30937 +size 20206 diff --git a/images/Animals_and_Creatures/Bee/Tactile/10.jpg b/images/Animals_and_Creatures/Bee/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba049f4407d455420ce9c1f203058042d8650d34 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc50d968112009292a43981f25ac5f6eca4e2cf85c79a76f7ce97c0b70ee59d +size 19599 diff --git a/images/Animals_and_Creatures/Bee/Tactile/11.jpg b/images/Animals_and_Creatures/Bee/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..108a9a62c732ae3f4014ca983453fbca21c7a890 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e308dafbc96c6d50eecd875c676acfed5ecaf098c2950e24859884848ee1d8 +size 22855 diff --git a/images/Animals_and_Creatures/Bee/Tactile/12.jpg b/images/Animals_and_Creatures/Bee/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..426aa2eefc90ddf93295cafc3b3d8f7f5ea753fa --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a76e83eddc145ff891d776c324a73799d06ce58d50794eda31444b8d94a2358 +size 17681 diff --git a/images/Animals_and_Creatures/Bee/Tactile/13.jpg b/images/Animals_and_Creatures/Bee/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec3a98be19fb9cbfd0d4b26a38abbcf554d6a8a2 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780e4b3cd8856dddcf9a855a8dceb09a486d43ee3e7f9a490f91098a19b8d423 +size 15107 diff --git a/images/Animals_and_Creatures/Bee/Tactile/2.jpg b/images/Animals_and_Creatures/Bee/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cebcc5a1d809d66c427a9942a59c26f33ebb7fe --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182db6893145fb6ee153d904a41d0fa3c739e1bf83feed7946d6de82a7a6976f +size 20857 diff --git a/images/Animals_and_Creatures/Bee/Tactile/3.jpg b/images/Animals_and_Creatures/Bee/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0d22f2f545a40dcbd0ac7b634dfe6441ea3d538 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3916bdc03636e9f69bafb5d0f618ba19b6d43ee6989e4df4a5fa9558ae7d65a6 +size 18735 diff --git a/images/Animals_and_Creatures/Bee/Tactile/4.jpg b/images/Animals_and_Creatures/Bee/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b770f9af32eda36e82af2a679336b70c1e8420f --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423817821d7fa3ed3b400911f4072661ab8a8cbc4d48307888a92efe0cda5aef +size 22488 diff --git a/images/Animals_and_Creatures/Bee/Tactile/5.jpg b/images/Animals_and_Creatures/Bee/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e6db918550b637ad8749092564afbfb9429ae3f --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfb81ddc5a4d9ca2653acf46306ae68e4f0b5552185e99fcaa0522d51733d0c +size 21874 diff --git a/images/Animals_and_Creatures/Bee/Tactile/6.png b/images/Animals_and_Creatures/Bee/Tactile/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9892f477dd1c39af809c2394a311d46d11594558 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c43160da2bac73b79ec1373655a7349965e05697b312e8fff38434148fd73c3 +size 514415 diff --git a/images/Animals_and_Creatures/Bee/Tactile/7.jpg b/images/Animals_and_Creatures/Bee/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b03fe44502021b78fd498815c14096733c357bc3 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28ed848a9f8eb6d369c64ce661e21c612bcc4aabb6d21715781327e68c604f5 +size 19947 diff --git a/images/Animals_and_Creatures/Bee/Tactile/8.jpg b/images/Animals_and_Creatures/Bee/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5278ac0394b414682209f9743a044afa187ad754 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66259cae91d54a1eb5fa244df4cb1b4ca2b7a39b72578e387c5d99baa7ecdbed +size 19890 diff --git a/images/Animals_and_Creatures/Bee/Tactile/9.jpg b/images/Animals_and_Creatures/Bee/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9b36d655290f74c1ac90c3e62bcab51d8ea07e5 --- /dev/null +++ b/images/Animals_and_Creatures/Bee/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45b1cdc4acf8e735a493ab10a3ffe17b1ecdd6502e14cc4d10b42e469b70e80 +size 10861 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a3c89412dadb8114160fa122c0420feb22e76b14 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0a92429ddad675c97f402edb46a47c51ea510f89a2369e3c636b49b8ee6fed +size 17679 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a5c643d0e69fd46c724a5ace704abf7cbb8ab93 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5690f4c3a53afa2380b3c59c26a8da3082573fec1538d63a6074e9761b448558 +size 19464 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8812a8cf450a8d61d0569b4154806ece9e2ad5d --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f665775872927d6ebb5bb035a247e847104520f237f6f1d8bb4cd591f9eefe +size 107815 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_12.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..520852b57d9e3dfc0b3c6fcc76a559c4025bb137 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f31d5e9765a21b518a49cd75fe4388a9a90cdee48800f8c7745129e9ec6c4af +size 29850 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_13.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09df9f28063e193c955b54bf44e6603d337562c7 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bafb36d7ae3ec74dae461824dc0e031c030d11fb0e116013a1fd62756161d5f +size 63265 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f94a99da9f92594ce63370699a7eafa0a52b4ee --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c646abd32f161964f3a3d3314036dc777ff6039e6f8a9dc0ac0114962b27f351 +size 16145 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2497b57006ff42463a4ab9c5d3f19e31f1f83eb --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13fd40a404cedf50bc3c39b43b207fb5595a944f9c031c3ecf4a753b0cd27e2 +size 80785 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a44f2f38f35cf2c5f500b588c22b411d8d8dac01 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481b69f88f8e3e2df666406b9893f1d8a7b97fb1836fc38648c1db07417c2cc9 +size 192900 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2497b57006ff42463a4ab9c5d3f19e31f1f83eb --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13fd40a404cedf50bc3c39b43b207fb5595a944f9c031c3ecf4a753b0cd27e2 +size 80785 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cdb8b8e96db333c59e87aafd191767edd3490f2 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7073645611f7eac04ad6473f272a275e560e877260fcf0f7c6d19b21779bbec +size 20647 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcd8a20b2cc52aa97ee53356a123aa6c14730f3c --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5dba6bdf2465d50ed70867c7e31a7ac867e6ca907982e305caa4541358e62fa +size 47327 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..889aa92448252447803c7d07a40fc2806bb73bb4 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7eccb7949b28cb847fae63762810b2c61992d593037f1a2893797905a678d6 +size 108100 diff --git a/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f0c57f09b8b6b3c879c47d5374bbc8cfc81f4c6 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d054c9d3d9436c0a9893ed602e784c2556860bd441fa20b59a9da98a8ab640e1 +size 1645591 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/1.png b/images/Animals_and_Creatures/Beluga Whale/Tactile/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5d045e31c7473a0411098c0d75a67ef425a65e --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2bffa4b4a464117a057f105e40d80f11b28c43b6acc45780134aefada576bb +size 72879 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/10.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df873b3df3cbfd235e0d3481971a55afecebdd2d --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12241a7c066eb2d8b2b02db79fc249b7203411f455a1d28e51bf41e579afa099 +size 6300 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/11.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0a37d127db64e7e464f2acaa85f1bdaaec9d513 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6008749b44c1af5754acda6dd4ac2deb94dbedbfb1c9a8edd907cba386dfcb5 +size 5373 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/2.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b55276cf79082c95aa853c5a072820f0b5653f4 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a642d463858dbd5671fa0569274da7322f9f1c37f30956802ca9cdb36dddfba5 +size 8882 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/3.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b5b505e8b80a1c12916576029ed37815e56c139 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46afc1b2cd27cade87914f6d7c62aead78a527ba9781299e04056b0588f52252 +size 9685 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/4.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afe2cf57a5211f583ad7b04149707562cc32bf80 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75261833b58d0eb27e0eeeb650d4488556c98064ba0996540b2d67667a93e88b +size 12113 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/5.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a61425a7305363142ab61b6029162d680684961 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e928f74842ea82dbe6e9a218ffc9352af580e0c4557e7d0021f768f25ae302ce +size 7144 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/6.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92fe1e7c6470781d219dc9d8c4119177e6399df1 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aae67373f01880522dfc0f76cbbd9c074ff03ffa3b99f4e121380141a4fd75e3 +size 9597 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/7.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b8980a9d6310d8baf138c8dc5cbde67c1cd1752 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afba656d990e0f5cdce859f2dbba7b7501fedf972ac75decb0d224595ff63d9 +size 6690 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/8.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26e581266eb4ebfb9b199e837615ab75c9c4a5ed --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083e03dea703710635080b6f2b052b089595c00bdfb76b627f40882bc571e49e +size 10729 diff --git a/images/Animals_and_Creatures/Beluga Whale/Tactile/9.jpg b/images/Animals_and_Creatures/Beluga Whale/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59b4b0c2b4bdc5d005c1afae9ad5effc4b30f907 --- /dev/null +++ b/images/Animals_and_Creatures/Beluga Whale/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a473f7d287eeda1a063bc4bd289e4ba12f2d845dc611b1c6b3ec36879c27d41f +size 4934 diff --git a/images/Animals_and_Creatures/Bird/Natural/10_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/10_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c9a639a492886d19cf00578e6fea9c390a1ab68 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/10_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33cd9294407ab3c6c1b99c645ae37738bbcf2258e4fa4d116d97559c0be0a0d +size 14151 diff --git a/images/Animals_and_Creatures/Bird/Natural/11_Bird.png b/images/Animals_and_Creatures/Bird/Natural/11_Bird.png new file mode 100644 index 0000000000000000000000000000000000000000..9663e6c673bdf921f7064659dd3d683399487f89 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/11_Bird.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da5ecbd4c6b3f94c9dae64445a94b40a652b9c039aa796f7f29024728a838dd +size 231497 diff --git a/images/Animals_and_Creatures/Bird/Natural/12_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/12_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..535c5b1e5af60d818b07ed44074c8d36de9118e6 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/12_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea18f03a1b4c078fcaf12cb56bd1229555df377fefaa73deba2b0068d8a5433d +size 24369 diff --git a/images/Animals_and_Creatures/Bird/Natural/13_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/13_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..86c97fd00d75d7c7ccab38408b59d946c8e759b4 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/13_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f0c9784f150c86e304f9f30ef6405bbcf61d0f40df9328c416df3693557f0f +size 22748 diff --git a/images/Animals_and_Creatures/Bird/Natural/13_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/13_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e9ff8d03cc7f3e6b1ffc54adc669850a9bd6cba --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/13_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bae941756606b3d5dff8d461e42b90d6e2bab14b2485f550053ebd1b6a49f7 +size 77683 diff --git a/images/Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daef00a52a741384d4925b354c03afaa1869f0f3 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a60fa29e15acf4c3997b2d70afcde5e7308096b1370ac69f304413ab9cc30d +size 86661 diff --git a/images/Animals_and_Creatures/Bird/Natural/14_Bird(3).jpg b/images/Animals_and_Creatures/Bird/Natural/14_Bird(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b99ef304b954dc051e9178db4b0dd7dc3a07f4f --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/14_Bird(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8d5add29f59c40e2e2d74e049d3feaf54ee24d791544665229ea83ed9c4be0 +size 7961 diff --git a/images/Animals_and_Creatures/Bird/Natural/14_Bird_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/14_Bird_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08f6b9c92235d4761cf3c821f501cf9374ead735 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/14_Bird_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78097ca25e709a1fdea5e881591cb29b882a8ff387575e0cb001d672dd58437 +size 24678 diff --git a/images/Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bea0a3c63f5f6843fa27004b13396c69be45ff3 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b95ef06dbffc5eec80a05160de47abd415b961af14034f32010b2e4b864f0d +size 110886 diff --git a/images/Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a11ec486cd64452678b22a913cd5ab7410b2b116 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4518620cf371429cf704fb23c163970caf55bcec990b63d63f4c2317cf1002 +size 19347 diff --git a/images/Animals_and_Creatures/Bird/Natural/16_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/16_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fda6a03dccbbb6aeab6a492a4f88ddf862c34e8 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/16_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c5e17ad05244184bcf1b7e6fcce1a0cb45585542b33d1bd09c6cfed9a870ec +size 4352 diff --git a/images/Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d3da913fcb9674ad931ebdf24504b762937f7b1 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8412a21b400edf40b43f50bf80ee5d83d12514da5973758fd63cd49b3825db8 +size 14533 diff --git a/images/Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0237328be6921b93168768aaa68a8e7d81cdf60 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db2c886ff9357b67ad1080ae3e8556f1e2b3836bb94427f0e74dd2aa57ac321 +size 10204 diff --git a/images/Animals_and_Creatures/Bird/Natural/17_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/17_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..518c8305dad2697d2baa5cc7e78961806309c3fe --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/17_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ddd1e6954fbe5ffb39f825fc7887ba75e0bc5a74d8df7c46ce6cc18005950d +size 3915 diff --git a/images/Animals_and_Creatures/Bird/Natural/18_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/18_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..779c84f7c6a62c6aa2d4d3a1dcfd864a4be61907 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/18_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba23fa64287b60dad79fad92c5d118a422c51c8675769c773d242506ace5898 +size 37317 diff --git a/images/Animals_and_Creatures/Bird/Natural/18_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/18_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91630a698fa3fea25415848278e3c18aea752511 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/18_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1b64a3a7aa93f63eed5dc438ecd557c752375a2d52805d4611ea5d9ee2e75a +size 275286 diff --git a/images/Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..01c7a62a8b4dd6ee73bca77620458fb529b9cf95 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd33a314a69d9e6d83135eeed1672578e6b890144de40ec485b82ab72914c1d +size 17692 diff --git a/images/Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg b/images/Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee8c577ec5f0a1afe3b91f7fde20b5dae485ff77 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3554b0eed3ea588715990e550da738b6cbf6723a2acb1cdcf99afb7af20770c9 +size 18952 diff --git a/images/Animals_and_Creatures/Bird/Natural/19_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/19_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8703976b6b02d016b6f55a6159f25d31b18a4fc1 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/19_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e9b46cdcca8cb34d150dbbcb0b94d16f641d663ce40f2a7a09d898270a76d26 +size 18166 diff --git a/images/Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..e28e1ad9c038e93dbbf9aaaeaeabeac8f7e527f7 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc5b29ce88b8e49236d3202b491ea644ecce8ac71d7d703cc4a9225e32fa0a5 +size 41177 diff --git a/images/Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45fee2dd3cb285a04bc87c5d4fc0afa309b7a0f7 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99822070d7926bdf27d7f07667cf705fa3d9c5f012b544977c854e3025a3dd5 +size 589770 diff --git a/images/Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eee15a87f03cace327f4cf3e9a6e065cd23bede6 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83326093d21f97fccfc3d9578dab6af6ab53a0cff43f686992d15e35d7025afb +size 15364 diff --git a/images/Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..ede8a2e652f018d414a62f7147a82a1eaf400011 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3018a08af479e884d7d704c7952fce2729f9d618ae90a23278ec89063b0f4ba +size 4414 diff --git a/images/Animals_and_Creatures/Bird/Natural/20_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/20_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29881786c5e9c5d536fd3a60641c598bff7ad389 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/20_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48db4a17cbf3ccef79a292d53a2ea817795fb7ffa1eca1d806dec8699fcfff79 +size 51536 diff --git a/images/Animals_and_Creatures/Bird/Natural/21_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/21_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..5216c7ceac55e4f46af8851c98d31552a06a8e95 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/21_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb683b9958cda8010539ade030ad463b4db5c2bbd2a34c5556257233c5fadad +size 7584 diff --git a/images/Animals_and_Creatures/Bird/Natural/21_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/21_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1e4a7f16d7f1c05db97fe38c5da30903f1db4d8 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/21_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bae2921f7ed97d84e93a056b69e8f69ff414b3d7383db562172d26c0b7c8dd +size 27628 diff --git a/images/Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a0f4a8d8e77077bbd78e6be74e6e86532be018e --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a720968afc8d22c72f172a8934797db584461113b049e405d901311c15fad0 +size 12802 diff --git a/images/Animals_and_Creatures/Bird/Natural/22_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/22_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b7049d16a832838ffa777d1fc27e3e09a5d764f --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/22_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a857b9c4289ba704df1dfaec3a35a7a99ea1b3e83bfea27a627895d7a05574f2 +size 26829 diff --git a/images/Animals_and_Creatures/Bird/Natural/2_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/2_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c1791085fe67db02dad879d1a1261d996f3abaa --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/2_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf7ec35b8a24b7fb7fd470fdd192432a4a1854d4b68ec1eb95da28e598ece81 +size 23269 diff --git a/images/Animals_and_Creatures/Bird/Natural/2_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/2_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0e66b8c935eeb3e88d9a252f9199cfbfa7051c5 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/2_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f623c6cd0f0f13c117f8a3d040b1691dba20fb734f12a4f9efb1a1deff649fff +size 72288 diff --git a/images/Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..907bb1283cfd638bc0ab8a234e953753ee125b87 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8986b52abe432767975f68cc8626e356db80f91fd41f4563f384d053dda7aa +size 20314 diff --git a/images/Animals_and_Creatures/Bird/Natural/3_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/3_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6d771cddd4519da158783a91e6d92257a4a1def --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/3_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d08e6aee65d8d72e1dede38b5578b6081e798f74f18bc23ab0b9c8ac3289255 +size 189604 diff --git a/images/Animals_and_Creatures/Bird/Natural/4_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/4_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e996381caacc43626dd4d3a6e390dd3680ecba7 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/4_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600ab150e64b10a417f5d784deb6c01f9eba83b06f42fc016f75cc20009cccdd +size 21533 diff --git a/images/Animals_and_Creatures/Bird/Natural/5_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/5_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a201dfd0a8f15e859b0163f1bf32e0fbf0850592 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/5_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65fd44c69deb97ab332aef29785f3ac2371d0bca7adc78e86eb836bfc2d63652 +size 54722 diff --git a/images/Animals_and_Creatures/Bird/Natural/6.png b/images/Animals_and_Creatures/Bird/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c4eb0188cd443c26615ab870f5cc7f17140be202 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8705633cef68e2b3344bcf1d9c36c31b3d97a81d4e005d2809eaad4b0e1d802e +size 16090 diff --git a/images/Animals_and_Creatures/Bird/Natural/6_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/6_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ccd92840556d372c2f8c254c2c235f033a19174 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/6_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:386e1e77cb0f0720d0e6cf449045f3775458732f20b8a80081f8b85495f44ffa +size 21523 diff --git a/images/Animals_and_Creatures/Bird/Natural/7_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/7_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7329a3838b17e81578fe379de816c042239a7b47 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/7_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cdf6cb214a882f92a5868c2a1ef219e951fc5482de7d576e68906eb0804e5b +size 16939 diff --git a/images/Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg b/images/Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4ba5a3ead999e7cb3dca7667263f4a23ca60796 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:885d301f4b732f2c80f55e64a63fe28e0334e082eb5b18908209edb1abc2da88 +size 61170 diff --git a/images/Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg b/images/Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..49e80ecf68292643cd797869e62ade5c404dea3d --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c80a6bfec452ba768d5feff158a203d99a082c37f72c7b5c5f1b4663c53355b +size 96999 diff --git a/images/Animals_and_Creatures/Bird/Natural/9_Bird(3).jpg b/images/Animals_and_Creatures/Bird/Natural/9_Bird(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..9adebbd8ddf931c809040af9d3ed9a262cdee100 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/9_Bird(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33307c07cb1eaaec21c732b3b7778a4f8a388d560e0d51228137f1e2fc008aa3 +size 77340 diff --git a/images/Animals_and_Creatures/Bird/Natural/9_Bird.jpg b/images/Animals_and_Creatures/Bird/Natural/9_Bird.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63b3d986fc77d23423288a3f29ca74ecac091b0e --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Natural/9_Bird.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86125bda3165088548eb28a51ddb315fed4a0c85a92387e81923866d97c248e4 +size 48288 diff --git a/images/Animals_and_Creatures/Bird/Tactile/1.jpg b/images/Animals_and_Creatures/Bird/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abf813bbf05b091792e7473dc1b0ef9804c34756 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d2c1e2239799fcea077aa56af01e5ff3076b181aefe1b6b85a133056f4f5d6 +size 148124 diff --git a/images/Animals_and_Creatures/Bird/Tactile/10.png b/images/Animals_and_Creatures/Bird/Tactile/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2a5b08a699dc195fa45b6943985c193954c6c4ed --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2387f8ab1949d00151843785fce6694719a8991d015d4f99349d49d90fba58a8 +size 601652 diff --git a/images/Animals_and_Creatures/Bird/Tactile/11.jpg b/images/Animals_and_Creatures/Bird/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be2a4396cb5fa10f0333d82392517fd7b080514e --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf02f32c43f0fe007afcb036e90fd6c6f562cd26d45bc8179db60b6b4717059 +size 35863 diff --git a/images/Animals_and_Creatures/Bird/Tactile/12.jpg b/images/Animals_and_Creatures/Bird/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a2d8362ec684907d0144ae3a82874d4a29fe6d8 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3900f40c6f143de08429654542ce9521488d6e40d36b7a708ff2b97627991d +size 12001 diff --git a/images/Animals_and_Creatures/Bird/Tactile/13.jpg b/images/Animals_and_Creatures/Bird/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e42ffc6a1eabb309096d54c91227279aa987e00a --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8784343fa288d831be36dc632bc2d7657ae1297991d930f5dbb37038b0eae65 +size 24894 diff --git a/images/Animals_and_Creatures/Bird/Tactile/14.jpg b/images/Animals_and_Creatures/Bird/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9acb161c2c2a04c00553719272b0310dc206b667 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2925a30cb81bcf9d130511faa9a441cba92b2a386a1b54bff4d96b04c1b43b +size 54869 diff --git a/images/Animals_and_Creatures/Bird/Tactile/15.jpg b/images/Animals_and_Creatures/Bird/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89fc31b1592727de806cb188497e3d6305c9bcf1 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1de552c5c6eb2674d66cc2030494a413befc33323930c2635bb264fd9b09fca +size 13959 diff --git a/images/Animals_and_Creatures/Bird/Tactile/16.jpg b/images/Animals_and_Creatures/Bird/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..082db66703d3168e0e574bc5ad1941ae71806e61 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c9ec484048a0a1ceddd38001bfb3f464e95bce010ca0922daefa96d253682f +size 19170 diff --git a/images/Animals_and_Creatures/Bird/Tactile/17.jpg b/images/Animals_and_Creatures/Bird/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48a214d0b67bcfaf9ff43cdf4e2f25913470d90f --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efabca8b4a861c4dc2c6da87b3fd794517388a6500b797f42a25164673e1cead +size 15003 diff --git a/images/Animals_and_Creatures/Bird/Tactile/18.jpg b/images/Animals_and_Creatures/Bird/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70d8f1e64edf2ec834463a00012417ae91a355c4 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1fbd6454c43059af8287b6dbab71cc3022701994051bf2597dfc1741f2aba45 +size 12788 diff --git a/images/Animals_and_Creatures/Bird/Tactile/19.jpg b/images/Animals_and_Creatures/Bird/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9067cd9178458a295cafc81b9dd9034197389863 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1a95b01327b56dd285dbf213dcea04ee2fcc3c43a7bf0b2d838bde17a2aa05 +size 469371 diff --git a/images/Animals_and_Creatures/Bird/Tactile/2.jpg b/images/Animals_and_Creatures/Bird/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d366200e1516e5be0c0f394b9e891daf736a890 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888340c4b750837a0e9b93daccba7d4b89c074244dde2dbc61aecf489c752ada +size 19463 diff --git a/images/Animals_and_Creatures/Bird/Tactile/20.jpg b/images/Animals_and_Creatures/Bird/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9d42a7397694822e851bdd21a2436604d86e74d --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58807df95fdb2722bad8f0c2dec024599940d3f139e4a0737faebe9072392be4 +size 84117 diff --git a/images/Animals_and_Creatures/Bird/Tactile/21.jpg b/images/Animals_and_Creatures/Bird/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0e6ebd4d31f8811ccab130bb45f5f50062f7896 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a14909ab83223a1d2c3a8a47c52f9e9b4adecd820db22a1b47d2e3d3bc2144 +size 92538 diff --git a/images/Animals_and_Creatures/Bird/Tactile/22.jpg b/images/Animals_and_Creatures/Bird/Tactile/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cf7523ce171ca4197a3a393dcf2b0c8a96dcfe4 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1df49c36bb31f94cdef84f73f95033349b145787642c7d0f05df4331d07f2b +size 28089 diff --git a/images/Animals_and_Creatures/Bird/Tactile/3.jpg b/images/Animals_and_Creatures/Bird/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1083edb50c4b5e61a10521d3237f92a5fbb9481d --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c44aeeedac6d4823395dfe49479325d6012605825cbd1e3b28dffefbf7e252 +size 19785 diff --git a/images/Animals_and_Creatures/Bird/Tactile/4.jpg b/images/Animals_and_Creatures/Bird/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01b269a3062a482ae330c2c0f670f85962c70691 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eaef689485c09f3f76f411c501f42925b8c5612d4f869ddfb618e3e6ea4066d +size 29121 diff --git a/images/Animals_and_Creatures/Bird/Tactile/5.jpg b/images/Animals_and_Creatures/Bird/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8293712e72a15b304c62d06c9f1dc0ab0e8fd390 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4899d9f1877238b723d8310b65304e876452f1dcf681b03055b683f1ed0b3af9 +size 79607 diff --git a/images/Animals_and_Creatures/Bird/Tactile/6.jpg b/images/Animals_and_Creatures/Bird/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02fcd08155a14686e5b9b17b67ed0a29e841fbba --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a65ead2cb930a3c994673dd4119d8b733066948aa04491aeee978d785591548 +size 32072 diff --git a/images/Animals_and_Creatures/Bird/Tactile/7.jpg b/images/Animals_and_Creatures/Bird/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f0d86cb0a9821b73bd3a4757cf53bcc587f8318 --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abab5117c28907c2a6b307e6045118cc4dce31a21f4265357708548ba70c3ee7 +size 52487 diff --git a/images/Animals_and_Creatures/Bird/Tactile/8.jpg b/images/Animals_and_Creatures/Bird/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4926985309fb9a0fc4407ce90fa975fd4d3a63ab --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6f03b9fe95c56602bb92fea880ac9ba721df0944d0d6741120be37a807aab6 +size 52953 diff --git a/images/Animals_and_Creatures/Bird/Tactile/9.jpg b/images/Animals_and_Creatures/Bird/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bf2aed347ecbffc4ef6e3b4f6873aee02de8d1a --- /dev/null +++ b/images/Animals_and_Creatures/Bird/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f88863554624c8aca9685db6b03fa482711ace4cc161e8da572251edb5d2294 +size 51017 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_1.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6812de443319f5ce47124dde477d0e39879652a --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996ea2c160db83a267284050ce4d81170d6e5e23abc6a87dcbbb1bf43ad00988 +size 288503 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_10.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d50683b6f1e405a602fba5b41c544ab480e85caf --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede580a68e294bf0967ab011c782102f26087320cf9579e16f38a33670852107 +size 131904 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_2.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03a27c222fa6f2547b6a9cf132cd2311a98bdd54 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e15a53fe06d8b0ab89587fc5154418ebe7657ce56a61145c41c75e8714d77c +size 155517 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_3.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1cd7651cec96d99874789be734cba184fd22912 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3d89bdb8d2e8cb2d506f35bcd6aba2c151a00e74fa64ab63947b86372c36a7 +size 127752 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_4.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..845f47e37e20803cf769680a829c9ca3c5580b16 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308a6a53edf2aac2cd64d44621fba6d8b97d7eb1ee94a491b3db43d557819940 +size 156366 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_5.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea43f25726b480860f3aa0b10a1f69263beb9ddd --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ab6b8727f9c27f04b855525a22dd405f9472e64dc18cb1a893d7655ad8f5e4 +size 456820 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_6.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..357ba95316b79762c03daac263fc220d3bf3e43a --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333beef32707b3d2fcdd07a65f12c08a4c37154ab95e6c0d89814bd21aa898f9 +size 505596 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_7.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1cd7651cec96d99874789be734cba184fd22912 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3d89bdb8d2e8cb2d506f35bcd6aba2c151a00e74fa64ab63947b86372c36a7 +size 127752 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_8.jpg b/images/Animals_and_Creatures/Camel/Natural/Camel_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1cd7651cec96d99874789be734cba184fd22912 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3d89bdb8d2e8cb2d506f35bcd6aba2c151a00e74fa64ab63947b86372c36a7 +size 127752 diff --git a/images/Animals_and_Creatures/Camel/Natural/Camel_9.jpeg b/images/Animals_and_Creatures/Camel/Natural/Camel_9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..feb6b332b4beb01b57de92065570415fa634dcad --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Natural/Camel_9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e087a651f8731673f764a031d3fd6c94f9b36a369f06803d66f44b0fd5154fa +size 1250262 diff --git a/images/Animals_and_Creatures/Camel/Tactile/1.jpg b/images/Animals_and_Creatures/Camel/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6142dcaf3d26134f75af3982555d9d9b391bad58 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6f30a631cdf1d7b658b69fd7b696db948c9c76be08681e529f68a1fe58273d +size 136423 diff --git a/images/Animals_and_Creatures/Camel/Tactile/10.jpg b/images/Animals_and_Creatures/Camel/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d35c7eba25abfd567d676678012537d775aeba82 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e099827d3f32bfa9c0a0b6a13efb01fa5e64c1f488838f0a05dfc2defb3a0b7 +size 10186 diff --git a/images/Animals_and_Creatures/Camel/Tactile/2.png b/images/Animals_and_Creatures/Camel/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b06484088338ea98f2b259bb372d6d0426e6f77b --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29283e68ef71b2c4032ccc0f01378c257078e13f2d68df3dc0dd1eff8b6d1dd6 +size 7485 diff --git a/images/Animals_and_Creatures/Camel/Tactile/3.png b/images/Animals_and_Creatures/Camel/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d493ff5cebd9cd9119bf90868fe1e9d40f47d5 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79b77a63156147ff689ff0dcf2c4d0906849db6e0a63f99d0fd25b1ef7303ff +size 158336 diff --git a/images/Animals_and_Creatures/Camel/Tactile/4.jpg b/images/Animals_and_Creatures/Camel/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0aeee76721fd26aaf9f122b71ddce286632b6cb --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925652834bf9c133c6d42cf59f248f41c39301c574fdefdda483932fb521cc5d +size 51878 diff --git a/images/Animals_and_Creatures/Camel/Tactile/5.jpg b/images/Animals_and_Creatures/Camel/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf0a8df4afee32efe7398fd5606e6dbc9d1ee90f --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954676be896de307648d215554542d27281ee84b17f744800dcc41ca1b97c66 +size 25123 diff --git a/images/Animals_and_Creatures/Camel/Tactile/6.jpg b/images/Animals_and_Creatures/Camel/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3431ed7cebdf8c1bc392cacb72f44967df0d5356 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d2eeafa70256b25f7fabd133c82b2a3eb3e040053c7baf5c8d411a28bc0571 +size 43320 diff --git a/images/Animals_and_Creatures/Camel/Tactile/7.jpg b/images/Animals_and_Creatures/Camel/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2700b5e9aab87d113141a39205f727991a146e80 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298ada1a8e834639b8d952565c42f543c7de56bace91a89484c2ebaba35d6869 +size 13044 diff --git a/images/Animals_and_Creatures/Camel/Tactile/8.png b/images/Animals_and_Creatures/Camel/Tactile/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8860b42a32b6e38a637147facd83e79dc977e486 --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd18ad75a1a00cc6894dc3891d3a594045bb0a98f8b8fc35110fa318b99733b +size 962801 diff --git a/images/Animals_and_Creatures/Camel/Tactile/9.png b/images/Animals_and_Creatures/Camel/Tactile/9.png new file mode 100644 index 0000000000000000000000000000000000000000..25daa1bdd775776bcff93e2979324d26a578515b --- /dev/null +++ b/images/Animals_and_Creatures/Camel/Tactile/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f68e17d7dc0a91bb16c6c1ea572226e63fbf9f4f504ff57769250973fc905c +size 27545 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_1.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2a7cc007d485cd32387261e0f876421018446bc --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a4cd7381339308420bf807506ef2fc399261172670d3af31f2040899b51736 +size 64103 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_10.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ddbea3978be5488c01919736549a7b84fe30987 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf3342edfbb3edfae41d88eb51eff43c4825845052dfeb38c0a32bf70943a04 +size 23172 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_11.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c559edd8f825bc592a8b61e78535c03220b4a07 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edd5f19edd66f5ea98079548048a9c650f11384c39cc843c420b3c02908a246 +size 49341 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_12.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f221f47ec637817cf0b5fc032dd7ed9a26e7035c --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503291b0299e473cfd703280bc2eed2bb0435c3129c936a7d9f9ea4c4e8a1f0d +size 60716 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_13.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d0b958fcd0383fa6812d4956843ef8628514f4ce --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865c5adce82c7f0cacaf35bed3d27ab8c5a21b34771983e353ef179dad38e986 +size 51365 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_14.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2a8d7df23e7e8e57fa5d6e226fff864d4fbced1e --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa396ea4b209a872bd4364976388470e55f0e3a42be4129c398190ee0d7a0e7 +size 162828 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_15.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c16954ff284870ce96efdafdc5c4815ebb9b188a --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0175cec2ef9fd8d0baabb7fe2dd46225400be5280f0250d16fb483f7002e59be +size 49107 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_16.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78fd4e92f1c40e062b2a497d6de262dc6cd4b981 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2388942bd613b0b98854e743ca396b8c7d527841beac563f395bab3787e26694 +size 20042 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_17.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58c5f41c09acecb18d2d0bb30e13d5d1d506ba10 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277f89e3cc37d261d8155384f5429bdcd23915995a76ddd20f450f824ecd85ab +size 18899 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_18.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3ba39d70faddb857fe791b69094a815b23f0e15 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e58431ab52c60fb5d975f9afdd817512b49d97828779975759f0878955c532 +size 36721 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_19 (2).jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_19 (2).jpeg new file mode 100644 index 0000000000000000000000000000000000000000..07450f822c125d07ba57b526ef749ebac40173fd --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_19 (2).jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646494dcebb9063e6fe19524b8122d0a21319fe383182ed7c52122f58190836d +size 66775 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_19.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c714870411d567e6a9c2106efdb268711b4c294 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3ae4d4407386c53302855479d591a5558fa261236060d0c398e0b248930ea2 +size 12041 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_2(2).jpg b/images/Animals_and_Creatures/Cat/Natural/cat_2(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..d26b6194fe8a655ed64196e32cdc9a646d8885fd --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_2(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50251eb90563c41d578c1c85165dacaa0a0d72422f27258db0a01aebc26fdba2 +size 10523 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_2.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..671ac0ba63617894992bb58edb1c90d6d6339ddf --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe1cf521fc827ba38e7f9096d91cfdb295802fd513f4cef8e4c672c95dd56ed +size 47912 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_20.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ef246f4936057464307948c69bb05e7202835e --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e68fdc3b4018734c25792c1adb70888d2d1037c4239da01a3784368e0d89c4 +size 11158 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_21.jpg b/images/Animals_and_Creatures/Cat/Natural/cat_21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dcffaf9513c8e1d2d0b51b99d4f1c43b5402398 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e619e309ef35139c131b7bd200b71ad6f167c9c34a326f08bc435411210bb560 +size 19845 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg new file mode 100644 index 0000000000000000000000000000000000000000..aa08fb535db9f99a3ea24bd687be4df776938943 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3f2719ee1e05bc9f1af15055dd9a017830580a785ba1a99d185f2ae4532a77 +size 10799 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_22.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_22.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ad6c4d3d8494a9cadcc793f861ff59b9b4d68e4e --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_22.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a5edd790f157beb6e972b8e42696b483970037a5f36d068775e319af79d5bf +size 25982 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_3.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0369f6fe6ba6a5f861e193a29ea884dbb38aa5b1 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7811f2748119d569a821cd702d65a89f4dd5ad7d85cca8a5cb83430c8e0d725 +size 53709 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_4.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bec6bbff6b31937e1fdb2017409ae7645d44f618 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1726f9e24c9235b1dd52c560c016db7124a8944e1ebd0cd6b610efb45fca329d +size 26489 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_5.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ce2287e7c08361a7825f364b9df6ab896ad12d12 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38c887e68ee53fb1801d5ea2a21869986dedeeca19dd3e59c3646981771c819 +size 23272 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_6.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..07450f822c125d07ba57b526ef749ebac40173fd --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646494dcebb9063e6fe19524b8122d0a21319fe383182ed7c52122f58190836d +size 66775 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_7.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..62a0ef2c413eb9e9a742672335c55ef58773f013 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91456becc3dfac0929831dffb56c06b8ab5bf150b2ca19ad7bf904047bae5f1b +size 43736 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_8.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5496d3797f9210ee9b03995180a0fb2def145475 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72755f5b71f6bba3af926dd7124d88e881ad6a44a545a88c1f5f7addbdc9b290 +size 80740 diff --git a/images/Animals_and_Creatures/Cat/Natural/cat_9.jpeg b/images/Animals_and_Creatures/Cat/Natural/cat_9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c841e019719ed00bc7ea1174715fcc44439400bf --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Natural/cat_9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1df37e5723101ad1ba7938bbbb2101b1c044d8b5a4ac2679d8e886757bbe908 +size 20427 diff --git a/images/Animals_and_Creatures/Cat/Tactile/1.jpg b/images/Animals_and_Creatures/Cat/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebdf0753315fa1f3a6f16d6a9d31a861a4ab8a05 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db56bc430e595968b81d9f2bb4e5e812e4d78a157dceba11c54d355f0d83ce77 +size 9096 diff --git a/images/Animals_and_Creatures/Cat/Tactile/10.jpg b/images/Animals_and_Creatures/Cat/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2645e1b3bd97d821cde90ad794cd288d0e1fea61 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f331a41deb2a3674dd8c84a2074717ac2e621de5721d7b34d836f8f6f8e2a7 +size 77657 diff --git a/images/Animals_and_Creatures/Cat/Tactile/11.jpg b/images/Animals_and_Creatures/Cat/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee18aa2c9e9b73a1c957528ef396c23613f49f29 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c9a2a6426d05dff308d127d9e8d6a5f45e029a76bb7bba1729ef0e7dd21e823 +size 15058 diff --git a/images/Animals_and_Creatures/Cat/Tactile/12.jpg b/images/Animals_and_Creatures/Cat/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de326c239fa1056df57b10c065a8dcd0e4ae534e --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad28237832546bdd1eec5424dce92a545c306904b40332110e7b37244716de60 +size 13089 diff --git a/images/Animals_and_Creatures/Cat/Tactile/13.jpg b/images/Animals_and_Creatures/Cat/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..382da20ab079f6afa276fceffe5868488b5553dd --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3fc62dd346ffc3a1c72552f8ca70e567329ae214add514f31c3ac68d6ee734d +size 54753 diff --git a/images/Animals_and_Creatures/Cat/Tactile/14.jpg b/images/Animals_and_Creatures/Cat/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..592658d2d309f0043f0a480f3dd0795836a5a294 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a814b15edbbdbbdb28d68a1d08c5b3277084ad0ca7b901eb092a2e616f3894 +size 9888 diff --git a/images/Animals_and_Creatures/Cat/Tactile/15.jpg b/images/Animals_and_Creatures/Cat/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9af5dff1a4546c8142aee6d6aac250dd4992e72a --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d27e859d31c8bd5b668e2cc77d5dbf6818f2f8cffb01ecece24b30aacd824cb7 +size 26841 diff --git a/images/Animals_and_Creatures/Cat/Tactile/16.jpg b/images/Animals_and_Creatures/Cat/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89ea2d0542aa88f02578f8805662d35e3462a67f --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a4d0e9956bd1cfdaef9207bc64d434b6bf1abc393fd0e8b78c8133ab97557a +size 22347 diff --git a/images/Animals_and_Creatures/Cat/Tactile/17.jpg b/images/Animals_and_Creatures/Cat/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a38b5b7545b27b7b9437b00de2d9abe9d83c9904 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aff5e1b195122384f7aaed1e6b43e0fc00652f1dd5c5f870696a35427bd2fb2 +size 14748 diff --git a/images/Animals_and_Creatures/Cat/Tactile/18.jpg b/images/Animals_and_Creatures/Cat/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd508996579fab49fe691e94f0c888d9ee91868e --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193565ad9a5b1de1110e111c66df03641074b5f5746cc29acd3ea520b8a7fe11 +size 10080 diff --git a/images/Animals_and_Creatures/Cat/Tactile/19.jpg b/images/Animals_and_Creatures/Cat/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b4ef3cd695629d4497bacc4e27a8c73cb928540 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e40687502cc9a98d9676c802ba1a6867c7c52a8d8bbfcc89d7e0afbc2c2333e +size 17589 diff --git a/images/Animals_and_Creatures/Cat/Tactile/2.jpg b/images/Animals_and_Creatures/Cat/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57f27c8eb1fbd061a8daab1ae699e566c2709cd8 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec55397c2622b7552f3b92b17b44d0590778835bdf200c871b2013eff05cd964 +size 537964 diff --git a/images/Animals_and_Creatures/Cat/Tactile/20.jpg b/images/Animals_and_Creatures/Cat/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5cd92d43ca4db747f694aebd390c1152abae797 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24f5c07e1e28274d0327136e32aa0e57c2076dc46ccc77ba192156cfbe47259 +size 11906 diff --git a/images/Animals_and_Creatures/Cat/Tactile/21.jpg b/images/Animals_and_Creatures/Cat/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2f3b90e463df6f24fcac3d384f181f8bb578a37 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc85310cd6850a03b1eae1ec8c3c0da9b2d3fea349a636e2ea7a99163f97c0a +size 37490 diff --git a/images/Animals_and_Creatures/Cat/Tactile/22.jpg b/images/Animals_and_Creatures/Cat/Tactile/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a6a1d3785f74545d180025a0c800bf5eb6a8eae --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1759046b65e255eafc0574e6dcad1ebe82e22ff684ede5931921c1209ffaa4 +size 27986 diff --git a/images/Animals_and_Creatures/Cat/Tactile/3.jpg b/images/Animals_and_Creatures/Cat/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8924e2c350c1d64bb660f73280c29c61ea91651e --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793cdc556175a6189c97d4d5f76063a0786934d674d36a4f5137c4aab0365357 +size 67329 diff --git a/images/Animals_and_Creatures/Cat/Tactile/4.png b/images/Animals_and_Creatures/Cat/Tactile/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7653fa1b3c5256cf8bef8e4f63803001a5284b --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dea516224efe6071c9f039e557b6957fc6ccc485078cd7034b58a6fa31dd8ec +size 1460845 diff --git a/images/Animals_and_Creatures/Cat/Tactile/5.jpg b/images/Animals_and_Creatures/Cat/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e610a4ebcef3a14049d36c4c5ec52b59dc512f45 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32003c7fc608a7c322b64b5b8021a35e82bcf1e42da3144d86d83bbb71d46f10 +size 12488 diff --git a/images/Animals_and_Creatures/Cat/Tactile/6.jpg b/images/Animals_and_Creatures/Cat/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b167c42b30b81f3ae37ae6e06dbbf5434b22204c --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2832cd7aa3099c9425c95a5f9a243d5d6c7aa5ad833a768d9859cbbb69d28496 +size 12644 diff --git a/images/Animals_and_Creatures/Cat/Tactile/7.jpg b/images/Animals_and_Creatures/Cat/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b355e3003aa4dad0de6f3bd4813e074b9eb6d44 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79237480e3874a27050ee72036d86129eca11903c4bc42971a8d84acd6a8ec47 +size 23039 diff --git a/images/Animals_and_Creatures/Cat/Tactile/8.jpg b/images/Animals_and_Creatures/Cat/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d68b3ef50afa71095cdacccf99c4b22cdc4d7fa6 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f992d289a6b230bd937ba9bb482df6f399877bd5b7617e5968b5e1f7687415 +size 76475 diff --git a/images/Animals_and_Creatures/Cat/Tactile/9.jpg b/images/Animals_and_Creatures/Cat/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76f6c00855b9593966de84ad55aff07f24407568 --- /dev/null +++ b/images/Animals_and_Creatures/Cat/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:587c0552b8def07505735cc1fd2b0e3a62170e71260204aadf2cbcdf1190b8d6 +size 37530 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_1.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c268ef77a3848209365242513a76e9e32fc3e6a --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8747eaaff9df2e849fe8b4d5ce76c547012fb9623084fdd1888dbdee9378a96 +size 36880 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_10.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30db8552e94051fb99c3065a01621f9c6bc911ef --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41959dfd98df02b27ee6ff435fb203e717d2eaf9bb2432a1bf12806fc7ef83f +size 176287 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_2.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5516025dee5db3b29515f1a70c8bc8d12d7a144 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c4a70e3eae742f050bd1cdc01880ab1a8fbe082ecf80f9305ae42a0f68d5ed +size 49753 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_3.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58608e158639a88c79a6bdb438a5b50bd83a0beb --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51fa9db9183b417bcc61baa4d0887e83eab368489f94433c98e70f15e4ce585 +size 86833 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_4.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20ead36e37f51c949fa1bc58a44d6b6b06b1915d --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35ae5e7a61a18273a4cba6dc05cfbc3523f4183fb98f4fa44c129ca7acdaa8f +size 222403 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_5.jpeg b/images/Animals_and_Creatures/Crab/Natural/Crab_5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..12470499849d9f5c23c55d11bae6a7934dbe6f7a --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c32a509e6edc00b60056015eaf05e53e5c52f24d9fe08fc2dc3eb01ebdceb52b +size 8405 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_6.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fdd7dc151a4bbde9620322e3c2539cebea4e3ee --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217af6bdc689819128d1ed3a74648944e4b2d84fb7077f19e53580b21e5a31ed +size 63674 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_7.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08e41a4050ff79cd1be81bf4cb9348a93d9ed9d0 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c2595bd10b5e25ea0d418334bc814eac5577cd33db517dcdf3afe30d2ed54d +size 76525 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_8.jpeg b/images/Animals_and_Creatures/Crab/Natural/Crab_8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..61210b83123c156f4b21c34fb3de55d53b92041e --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365d20ea4103950217042cc66690068eafc57aacc2ab0f0fa9f913be62c806c8 +size 9146 diff --git a/images/Animals_and_Creatures/Crab/Natural/Crab_9.jpg b/images/Animals_and_Creatures/Crab/Natural/Crab_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fdd7dc151a4bbde9620322e3c2539cebea4e3ee --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Natural/Crab_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217af6bdc689819128d1ed3a74648944e4b2d84fb7077f19e53580b21e5a31ed +size 63674 diff --git a/images/Animals_and_Creatures/Crab/Tactile/1.jpeg b/images/Animals_and_Creatures/Crab/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f3ba606272409b0a75cdf5faeb55a2dad06ac0e1 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e00ee100ebaa7d94e89aee3e6b0771a967e472bbd8e9453ab9b5da29bc52c94 +size 47466 diff --git a/images/Animals_and_Creatures/Crab/Tactile/10.jpeg b/images/Animals_and_Creatures/Crab/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b425c8ada69e4be033f645def7ee84a8431a5265 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e43dfe6c168b2b2e8136fd6f0bef5504b399abc1b1c61d55e6fbfe0516219a4 +size 43725 diff --git a/images/Animals_and_Creatures/Crab/Tactile/2.jpeg b/images/Animals_and_Creatures/Crab/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b8ba6a5b4bc7fa4e273049a01aec8d19b44b1c35 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe68a4562a29574cfa5acb934d6b2dff611a4f6ad80d3011d49e5e573753d0e +size 36506 diff --git a/images/Animals_and_Creatures/Crab/Tactile/3.jpeg b/images/Animals_and_Creatures/Crab/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..67c7546e8886fb5b2d791fcd939dff50fd7ee28d --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5064ca09c408cae5e54aa5ae189759a4eae475ac1c299e89174551ec79a33a8c +size 41827 diff --git a/images/Animals_and_Creatures/Crab/Tactile/4.jpeg b/images/Animals_and_Creatures/Crab/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d6b8ed4686a8d73484942624c53af4729e1fa0a0 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb8dbed3dc3b4870800f1c433e5dff8da3d0591fe38fb64f96eb88630da1eff +size 21131 diff --git a/images/Animals_and_Creatures/Crab/Tactile/5.png b/images/Animals_and_Creatures/Crab/Tactile/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c9435c4d63e60667a38dd38f23fc611631e3954e --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6cf9a05597334ddfdb6082d7f93529a7c4b66158c1677f54f7c102b32b9105f +size 793723 diff --git a/images/Animals_and_Creatures/Crab/Tactile/6.jpeg b/images/Animals_and_Creatures/Crab/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4dcfb273a4a3d5c7243482a6523a59394f6d5312 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6d58382e3cd41969a37e9e396d9547748d0577551a6a215d45758b8fcc2f3e +size 25673 diff --git a/images/Animals_and_Creatures/Crab/Tactile/7.jpeg b/images/Animals_and_Creatures/Crab/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..03a04acbe924040d3246a5a4ed545f4fcdf1b49e --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a66d40791ad1253937ba94d6ed03d408256ce7a5c9333d10c6cda4be44c0c2 +size 28476 diff --git a/images/Animals_and_Creatures/Crab/Tactile/8.jpeg b/images/Animals_and_Creatures/Crab/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3933117f458519f993a0f7287126bfa28ccc97a8 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761a1d7f3416d2c96fe344eb85ec74234423f01d811921a7b81240797eea9aaa +size 28166 diff --git a/images/Animals_and_Creatures/Crab/Tactile/9.jpeg b/images/Animals_and_Creatures/Crab/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..42339f6cf4f4ff879772b5d3794bf57fa89231d7 --- /dev/null +++ b/images/Animals_and_Creatures/Crab/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483e44f2d08df05697a08c8661c687c18186b5d6504d5ac718d5b31da114b0ad +size 36990 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46c201a2587f0ae66dddd0a745a5afaaa3c707a2 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e291af3c94f6475e327579253be050481dd155947af5018dd258c502a2c5e6e +size 42199 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8013ef2c13e6e1cff06563758a4ff7d04b65d859 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6af7fff2987854ed90a54b19d49c52b87f4e50b756e32ba34d12ab44ab7390 +size 53045 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80a9c14b4de5a995ce254d4bb99b7d30abddc14a --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c71ef1f714cd851b823e1c87160d8243fb61a99dd55180a4f1435b1d0dafe7cb +size 45865 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..952d5862b559f391ad1d9cffacf4b9407946ba1f --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41205f2ef5f1255b3a1529542daf54187f3f34fffe5090e942d4891a0256671c +size 57722 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/14 Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/14 Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ae6c5868f4c6e07ff0c7b341d0a4c6c200baada --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/14 Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a0c99fdd306552da10b5f9abd4f8f698966d50150dd44cbe5626b31a3c83928 +size 34048 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18cc92817542a7fd0d379b9b4cb350d97467f982 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b424c7480f5a20cc4f78a71a0e2bc151030d3038884377a39777540eb92507 +size 68747 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae2cf427966d4096529ba4f2e1769df9550852dc --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7e1af8a2808720c2e2208349b82723befce3f19dbd3a13f516f99358616efa +size 42944 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/17_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/17_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b87a59c7900c244b51e2408d615a649f97e0774e --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/17_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05188b152509e092d062f3200081f9dc56a5ad3e812bfa1908da17f78372a07c +size 103628 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..eeec326ab85b38a6e966b544bba8e2c11814a043 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe83fa8bfbf0d961345622d7a7c844fb0c5d6476077b133036dfc5818ebf730 +size 66896 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..eeec326ab85b38a6e966b544bba8e2c11814a043 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe83fa8bfbf0d961345622d7a7c844fb0c5d6476077b133036dfc5818ebf730 +size 66896 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b599a14603f59179aa812e228ee97e561c6c1be9 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3204d176ea480b42c98598709e48d5f786d9ccceb9e4ebb9e88c603ad2a91c72 +size 109486 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/1_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/1_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b7cbd8536ffa1755f64aabbb74366b1ad34e2d2 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/1_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab291bae2dc94a273977085c91e9b86ee604fc70d27ddfc1b3e0d30241bacae +size 18773 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ab912765272d2ecdb99512ed86dd7a3c917a4745 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657660222310b69173c8f55a3b630564ddd7980f526b5d8496376e11b68dc0a4 +size 187632 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/2_Dinosaur.jpg b/images/Animals_and_Creatures/Dinosaur/Natural/2_Dinosaur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dccf777f8eaab759eeb057f2e9c8c1521932a1b0 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/2_Dinosaur.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8353bff04c2a26961ddd7c5d331c6e41daf1fbde380324fb8bb847e17d52403e +size 50369 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..32441521785193b7ccd2f7441d30d850bf67a097 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e191b5940ff0dee45ba7cf9d587df407e9da95102692e1ed50894aef26567f2e +size 24197 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..769bcff1c9f5016c29e17d2bad79830569b6568a --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66ae995144f3e81f99965aaba4c083a3f29645ebfc22b6f620c03c5c5445808 +size 25673 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a41e7fedd3d2ee7f39063a151e62314d90999111 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509c8e5257adf0c473a7a1a0332786192666dae64b80b1b0f244eea559d95fbd +size 223812 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e54b1f15a5360c198824ed56cc864a895c177165 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d80e7d21c69dd8503274e5aed07b8271945d2ed960e8a1e5257c233ae53e74 +size 213500 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7522d0cc4ea7d53440151607f1da1d54db90087e --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ef9ea990029aa92681f80e1773eb8383bfcb5812a26ff463a41c1db882ddbe +size 193577 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/8_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/8_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2162e879909202440cdc3bc6d2c2ff9c1bc7e8f8 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/8_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8483e1326296e10513ca2de03c4999a047c5880c38c559b9ba65ab91fa71429 +size 35821 diff --git a/images/Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg b/images/Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3aecab0647e12a0d0b8db46c5f1be5e77ea72483 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a2d10489eb085b517e3a17da7078087034286c83f08664f58a192824fa3ba9 +size 10656 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/1.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..887caf7b9e2938f02cd702bedeff90b60dd8303d --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a12e30e18dc73abacb749d87b8d2b220d92d28e89876aa1ba06ebf633fc1f88 +size 13433 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/10.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12c9f1c3df6520aabad7e2566de348b4c9c6232b --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d11031653790a2b6beadf53e48d5a0187e8e4ec5bf570ccf8e4179f628c4e2 +size 18119 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/11.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81e9a272a3b649a24ad3ae3db4f8adde31e1170e --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8e4bf85cf36e3c6f472f35838ddc5afedf9ac666c9e32bbb01cd3b2f197329 +size 15315 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/12.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5b254c3e74822b72530012b3aee6df69eac94af --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2000ba84c1ec5a51bd4f5e9923fe8c3507ee13c02666573226d65050c101708b +size 22901 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/13.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c12b880833c836edafaac1d73dc43f684916fe8 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04c774366a1d203b8e9e8641302440bc2163514332f3b88da6682f64edaea39 +size 132407 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/14.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5512ffdc72f154495781833b4cb69258b2e7614b --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d627a6f32a921dcca74cc358530df07010b22f05a6aac5129a11948a885d7ec +size 17754 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/15.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6ef889302223035f9e2a48f89839e77ca52136f --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ddf4bb1ff9987f91de7ba8bc5a02e3aae25409ed39f187d729d3f54be08209 +size 25444 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/16.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f1ddef0c7521572803a1220e6c60595c6b0af5b --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35389bce92db94bfd15a84344116f166ddf85b97c05c5dc3ca9e776443585bc3 +size 19057 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/17.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b048ff3a25b437a25d5e87f9165b3e805380cbb2 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a44cfff74dbfd4f2a8f3343aaa24859dc645241844b49525a4a9a2873673201 +size 16807 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/18.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8146842cfa00171eddb4cc5adf0dcb5feaeaa99c --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7c2eb184de4cefce3b48f84979309c22a9e82da24086476c02fccbfeb0d6a4 +size 22332 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/18_refined.png b/images/Animals_and_Creatures/Dinosaur/Tactile/18_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..c82c402a97a5f87c755d7e3c77c63d1568624d37 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/18_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501228bdb54346c05c1252c03af39d896438e70f337f5a2a56b4935c665d014b +size 1753886 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/19.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16b7d779d7cd53282b042f5e9d12d9b599671a74 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e451fa950bec0d716ce10724f2a0226564ffb3680d25abfe2af9d6ca5177cbd4 +size 21014 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/2.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5a85dfbff2c8de3879690a0dde580b30ec5ef9f --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a01975c53afe434d5c47345ac69ea713811c923c96ac65e8ba1209ddafb9863 +size 15917 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/20.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48f6aca9592525c5b89e61a645b2786616f25d72 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6649b0c253f4a9eda4c8a9fd3773b475b674e8872a9172fbb38d7af30efdb4c9 +size 15247 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/3.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fed3def238c950a4e515baa7958ae2a612b19eca --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee78fb78c6af9a96eab4525db5c7949f31e8258978636cfb30e5b6d9dcd4999 +size 16197 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/4.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d06fd680262947e6af48cd459ebdae4f3206d995 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8453b713df0ea9f9ecdff1e7792d7b074cf6a2255e0975a869004a7132affbf8 +size 14154 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/5.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cb9fec0d54c14ff2c7463583280443be94f3bd9 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542c4c83e8eb2875e97f48394f2016222b3e36a9eb9fc60b130b079272adb865 +size 14020 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/6.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2c02b4506d645a7577d671d5914834d02ef418e --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a347cb8eb24e7f51ddf56096490e070300ece5bb4518ea32f6f65a8fc0a59cd +size 22406 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/7.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b2301758dac7fd324f752318407e2bde4391bad --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f01856eb77cb32d7ff897250981ff3974311470fa789ea7123b620d6800065 +size 16727 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/8.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f14de76cfb4d64ea1456d22ec4bd859028852209 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3eebd46c7fefe9da9b43e9a679fb129a2ddf477dd75cd0b043b212814e0907d +size 13598 diff --git a/images/Animals_and_Creatures/Dinosaur/Tactile/9.jpg b/images/Animals_and_Creatures/Dinosaur/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cf6626df629b498935f3d19b4dbb3ae11539eb8 --- /dev/null +++ b/images/Animals_and_Creatures/Dinosaur/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4ea89c843d41785477979037256cb59c2d29bf90497bce126cfe4aee8af599 +size 19528 diff --git a/images/Animals_and_Creatures/Dog/Natural/10_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/10_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad85d8fad36279edb35a50b943afb23355bb793b --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/10_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c236f1d18ea5d446871fa6f0225fc468ce9def15717a955afcf288b18cf27d7d +size 210432 diff --git a/images/Animals_and_Creatures/Dog/Natural/10_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/10_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2100ca173ef497b73bdb467a9f411fc08558c66f --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/10_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910b78c876a8fbdf7f6d7667e5633236804ebe77d97fdfa9a8ccc53d7de741b6 +size 103683 diff --git a/images/Animals_and_Creatures/Dog/Natural/11_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/11_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b5d5aee7e56fef8e0e345361c90a76fd4baaf5b --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/11_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e10817a02ae9fe044f86fc82efd7aec352f313884dc611430a5a41df3d7d60 +size 42078 diff --git a/images/Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a2d28db07981f62a62f082c173301d4f16312a1 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7dddbf86e24f28cce3869c7c9409fa870fc99cd5de9149f7a7e4e62fcedecb +size 34361 diff --git a/images/Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg b/images/Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a678313c54ab813cb1504bb8af5e6ed9223fde9 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a90dcb850bdde768af898e6724ee426bcf70656d599481d920c16d9cea1839 +size 71798 diff --git a/images/Animals_and_Creatures/Dog/Natural/13_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/13_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab7136744700d0b21c1dab0445aed36983a89040 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/13_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944b9e6d617e5135dc7d51684aadb72967a466ce779cac344c2b9a30ab6f0889 +size 31038 diff --git a/images/Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg b/images/Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..4543bd3c8bcdce89f8930646a9990669f16642ad --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f0c4129b626a219bdc15284c84cb3ba383aeb16671af84f3da6ca57c9d6627 +size 92263 diff --git a/images/Animals_and_Creatures/Dog/Natural/13_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/13_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02693ec59ed01913e8e38e86a2ad15f9cc3c4813 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/13_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d14a222f4760e4eafe7a25f5f0f2a1117694a548b6e8633f3a3b221951a34e +size 62944 diff --git a/images/Animals_and_Creatures/Dog/Natural/14_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/14_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55d523d31e91c2b88a327c011e9158ebab2c67ae --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/14_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96ed6b419b50cbd9c1254d8891ad53480685c3729c6458ff8b9c3d4b04303b0 +size 45098 diff --git a/images/Animals_and_Creatures/Dog/Natural/14_Dog_2.png b/images/Animals_and_Creatures/Dog/Natural/14_Dog_2.png new file mode 100644 index 0000000000000000000000000000000000000000..48b053f401ccdaa7f512e06bbd95a0bc059fdd90 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/14_Dog_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a1746e67cbace1e44d5093014e714b5c4f9a87f41e2f8f2a07e919cf483fe4 +size 408190 diff --git a/images/Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..37d664f495012caf5b54c89645c3f34ea300b3b3 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f41518e19502f123193e692c371f832e9c7364342e0307d0d608ab416d5d03 +size 319161 diff --git a/images/Animals_and_Creatures/Dog/Natural/15_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/15_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a08fbd18d478cdb198eb03192364f594f991f3b9 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/15_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a27ff46b97e111402f63ea8d30037538b0163474b35aa00efbc6938b880a6a3 +size 12954 diff --git a/images/Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg b/images/Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a39fd2c1cf632a22098e24aa5eadbd86ea7dfc7 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f478c590d52acecbb66c7052660be399ae4bd6d29cfbe0806d27f13c4bd1e1 +size 44775 diff --git a/images/Animals_and_Creatures/Dog/Natural/17_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/17_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57d75df2e2cc686d0a984584fdf3d426fa95ed7d --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/17_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d056d99934882265e512534704bd1d45354367b2aa34d51ceb3080c35e6ddc8 +size 27239 diff --git a/images/Animals_and_Creatures/Dog/Natural/18_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/18_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d2ef682d1c837a50c4117043dd33c8ece8541be --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/18_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd1e72c961da42edcf6206e829b221c8d07e47d15f63e8f8ab014ebd3d26b6b +size 131236 diff --git a/images/Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2921dbd60d54c642812f811a8a6ab0c30b8025c --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44cfbc54d6aa74d7e9bdc012c7c9d282abaf6c32bf947c745de9cfafef98b6d3 +size 71896 diff --git a/images/Animals_and_Creatures/Dog/Natural/19_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/19_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30535a8905f848627ecdbe1c44c930a2ceb3a0d9 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/19_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5719b1d30d3735f63cb1164a3647e7189122a82ac050a645d014155a36afcbf0 +size 148308 diff --git a/images/Animals_and_Creatures/Dog/Natural/1_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/1_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7285cc5953d5455033e24fc61d0680f22564283b --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/1_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d04da5717d9e92a63bf331e7fe862c0f531a7ecbf3ee272bbacf58b31802649 +size 16422 diff --git a/images/Animals_and_Creatures/Dog/Natural/20_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/20_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a424a3638d1ead583da8c759c1337bed8429ed9 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/20_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525b6515c4e847dbb7596481e58a7ced287d5060c305badf449f66b80747a0da +size 68958 diff --git a/images/Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cc6f13e677a0eb3cfbc58ebb99a47dcf5e3a00c --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a365b6390f4fce19e7cbbd948d505e73297949b227d51f2bf1388283cd71e758 +size 45884 diff --git a/images/Animals_and_Creatures/Dog/Natural/21_Dog(3)_Edited.jpg b/images/Animals_and_Creatures/Dog/Natural/21_Dog(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de6c5fb7a0889a410d9192354e5924a3c13eefb7 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/21_Dog(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2040637fcecfd60f296a6c720ebc81dedcb083eca960e9e2c50f554e56350db +size 26169 diff --git a/images/Animals_and_Creatures/Dog/Natural/21_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/21_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dc72421fe8f557cac5c0150278f123ad3290c84 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/21_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:633c03c8727cf0f775fa21c3a12bcf2ec494be18ae73a3e0d961d1e2b1251a10 +size 44227 diff --git a/images/Animals_and_Creatures/Dog/Natural/2_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/2_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..832cce17585f640a31fe9711bd67568763769e0d --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/2_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8443c94f93bebffb31b1dbbc0220dc73f7cc5333f0d359a38eb54f7b2210e65 +size 94856 diff --git a/images/Animals_and_Creatures/Dog/Natural/3_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/3_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..475447852a48fc4566010cb80628b399600c3b72 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/3_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b08f3374cb031373ee0151bb7b471685a3d89ad0088f551db8444e381f52025 +size 19751 diff --git a/images/Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg b/images/Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a31f39e91783efa952c82aa6cbcca028c10be76b --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16a2ab19cca1b09ddd348ffab44895f08474d525658071b72749886b1d6385 +size 19064 diff --git a/images/Animals_and_Creatures/Dog/Natural/5_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/5_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c374ebe9b89afd0bde766de323503b706c042324 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/5_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a7bb658cdcfb73655bfe16eff09e81c87c899bfceff6f1a87051e391758b8a +size 56476 diff --git a/images/Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..840908cc2212a6db2fa5953cc5f626c8614a644a --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1918b61295991e7a2c10be0bf4006e576dfcfcdcf8fad7833977340c865d120 +size 68110 diff --git a/images/Animals_and_Creatures/Dog/Natural/6_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/6_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..363b8ca9593e9ccfe6f1f56f7e0136f65d4cbe6a --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/6_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00fb5017f40b54076332823dd1d418133912edb728ffc88a79f8eb0daccaf32d +size 15657 diff --git a/images/Animals_and_Creatures/Dog/Natural/7_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/7_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8817ad25153508a1b26aff2a01bed48bf4974754 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/7_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e056de624d93876dfc19b347e8acc42ef1322963b79c0ebc5a3e67bc7ef18fef +size 303420 diff --git a/images/Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..d578f208d332a20d913ac2cad76e9de358a1dcc3 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef7cb6b27c898b57b2687a9f77e59d24a23dd481719e6bd287fff9c36c63fc0 +size 41089 diff --git a/images/Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg b/images/Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..307f152560fef7154ed1da4bdb309c7af2a63b52 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b048171388eef068e3b69cd38d48f8969ce409777f42d7cdf02d558cb5a69c57 +size 42874 diff --git a/images/Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg b/images/Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..399be8635b3fc6cc628f1848c869448db16983e7 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a9681141b9828acb6ff0caad087dae5404b2921e3654610beeaa19887e8de3 +size 68530 diff --git a/images/Animals_and_Creatures/Dog/Natural/8_Dog.png b/images/Animals_and_Creatures/Dog/Natural/8_Dog.png new file mode 100644 index 0000000000000000000000000000000000000000..de8ba4621b47456192bf1cb8844bfc7ef6d8ec5e --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/8_Dog.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9cb027a477ae2a89f10c966b726c7d5d920100ea47b5861b6a1708377c3e7d6 +size 1171000 diff --git a/images/Animals_and_Creatures/Dog/Natural/9_Dog(2).jpg b/images/Animals_and_Creatures/Dog/Natural/9_Dog(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..91c25141dcfc30b71edf3fae0523b644c33cb527 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/9_Dog(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9839435ae3e315072ac1ca70f7d1efa66f811d11e6a10d6bf8a8e7be441abb17 +size 749433 diff --git a/images/Animals_and_Creatures/Dog/Natural/9_Dog.jpg b/images/Animals_and_Creatures/Dog/Natural/9_Dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b904a87e316f1b9c4373c3219355a232a2e1c084 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Natural/9_Dog.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7968747f124216a6a204df304a77f6977b4db50a87248fc50df6ac242ceb2e86 +size 511227 diff --git a/images/Animals_and_Creatures/Dog/Tactile/1.jpg b/images/Animals_and_Creatures/Dog/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eac48b87d7507222996fdbecfd23cbca0f3674e --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345fcd0b2fde9ec8762dbd4b405192a1221a852711459a7ab6e04a32d5ce5d06 +size 112442 diff --git a/images/Animals_and_Creatures/Dog/Tactile/10.jpg b/images/Animals_and_Creatures/Dog/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9315afa49c13927de8c1441fe96dd77d8d3c07b2 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e70e7468df0763e95d79e1be048d72a8ac9bac9c21d74a3e67c4b7bf8370725 +size 9008 diff --git a/images/Animals_and_Creatures/Dog/Tactile/11.jpg b/images/Animals_and_Creatures/Dog/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..044b718eb1ae9480eae3a1720d359e9733b679aa --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef432e34d83b74aa337e55890043a61e4d6f97333f1bc558148ec4eec4d48193 +size 69599 diff --git a/images/Animals_and_Creatures/Dog/Tactile/12.jpg b/images/Animals_and_Creatures/Dog/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64389a40ad63791c60e3dddc0e9cef438ea906c5 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb02d9d72c6d22b3fe2b082d478f963acd1f991ab8899540ceaccb495f577a0 +size 29062 diff --git a/images/Animals_and_Creatures/Dog/Tactile/13.jpg b/images/Animals_and_Creatures/Dog/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e3399b34e10b9e28fa24859517d2a29048f0301 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14565b4122718b8f04a201a464ccaf9c402c19e66b718adabcf9a5d5cfe29f80 +size 181121 diff --git a/images/Animals_and_Creatures/Dog/Tactile/14.jpg b/images/Animals_and_Creatures/Dog/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d15e463d5dd9a083e8fc39051ff51bba08b58b0 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfc6633bc55e588376490fece9e7a7d5360b85b9a5410f75bb54de9c36934b5 +size 273696 diff --git a/images/Animals_and_Creatures/Dog/Tactile/15.jpg b/images/Animals_and_Creatures/Dog/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c61b6b28a1febbba12da019aa302485ec3b8dd7a --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3b2af0cf0af16d00d728622e942d7bbfd5ac9bcf957f7fa9e6896426d3df63 +size 32551 diff --git a/images/Animals_and_Creatures/Dog/Tactile/16.jpg b/images/Animals_and_Creatures/Dog/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f5fe9431a9dfd556761b12adab021a063f3ef59 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bc57fbe6d7f4fe20f5c75d8892de3b5e17a5d8c7ed9540f0e55316ec39861a +size 10705 diff --git a/images/Animals_and_Creatures/Dog/Tactile/17.jpg b/images/Animals_and_Creatures/Dog/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ae9c4f057be1512f5f994de9a6e987df351656b --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c023cc0e26d25c6d426a804068b6f0d7ff32c67d4a92a17f383d4ae895abe19a +size 20647 diff --git a/images/Animals_and_Creatures/Dog/Tactile/18.jpg b/images/Animals_and_Creatures/Dog/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..830259b7e22d98123de9f1c85c744be30872958d --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c938a99d5d228f9074f2941d6c58cdf002adf0f734809b736c6d0ff2d32e5f +size 29655 diff --git a/images/Animals_and_Creatures/Dog/Tactile/19.jpg b/images/Animals_and_Creatures/Dog/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2408f80dadc17c8920ce6f65cfcfabbf876c6c19 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d35a6407162dace6a4aaeca15de25c7f8964ed958a1fc46ed298e062d8c981b +size 9780 diff --git a/images/Animals_and_Creatures/Dog/Tactile/2.jpg b/images/Animals_and_Creatures/Dog/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3a7b8e2abb60aceadda3c3cc446e79d05f12d69 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0f1716bde94648516f7670ab6048923b1a340aa455b3ff6464ebae4dbb1a07 +size 221912 diff --git a/images/Animals_and_Creatures/Dog/Tactile/20.jpg b/images/Animals_and_Creatures/Dog/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c7e3b07cb635eeb6d3b560c02cd730ace9ac4ed --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109b4593cc6e7a8ed662f043ed673e0caa68b709ba3979bca266dad8ae3b2949 +size 18125 diff --git a/images/Animals_and_Creatures/Dog/Tactile/21.jpg b/images/Animals_and_Creatures/Dog/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f9be12e947761668cba91d672fd495fe9a5dc86 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb4784fc4a698d775770ba03e00d19f2e25a22737fc3379f2275be283464b67 +size 30825 diff --git a/images/Animals_and_Creatures/Dog/Tactile/3.jpg b/images/Animals_and_Creatures/Dog/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37a30bfdf0f882a648c4ce325cfe51eef9a0e069 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56341d25c3134433d6ced0517df78cac586c4c6437821d5e298c8a79c9039ce8 +size 14212 diff --git a/images/Animals_and_Creatures/Dog/Tactile/4.jpg b/images/Animals_and_Creatures/Dog/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22efbee995464fcf58e478fb4a90a36ba04aa92b --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c70b667e04e8cbc737092a5dac3a4afef66a7962bede359334cf7ca7319281 +size 21205 diff --git a/images/Animals_and_Creatures/Dog/Tactile/5.jpg b/images/Animals_and_Creatures/Dog/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f520fd8190e31f480f265484e2d0702d54f48c1 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5c38ad6d15ed0a3f0892b3c02fe7e819fd2891fde6a7d918bdd512b4f28777 +size 266129 diff --git a/images/Animals_and_Creatures/Dog/Tactile/6.png b/images/Animals_and_Creatures/Dog/Tactile/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c52594186db820ae835a08770fb20731d4e914da --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f426af61365289c18c48b4e372137e7ab6b19b03b384150e5c0bf0533bbc926d +size 426155 diff --git a/images/Animals_and_Creatures/Dog/Tactile/7.jpg b/images/Animals_and_Creatures/Dog/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7de7eb43df151306091c02452687d634d23a8cd6 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052c0d68157215d96451e31d2a03dea2c2481cba3b7b20afa602cf70ac85a097 +size 20485 diff --git a/images/Animals_and_Creatures/Dog/Tactile/8.jpg b/images/Animals_and_Creatures/Dog/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49d9e3569fec2ab82b9c41ad8d9b3eae30da51c7 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c735ff7a8cda9ed757ceda7c940fdaa28d4f8865df2e1d70af02ef2120f6bab +size 67684 diff --git a/images/Animals_and_Creatures/Dog/Tactile/9.jpg b/images/Animals_and_Creatures/Dog/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22614578c7298e687cca294b31acefc8e0118448 --- /dev/null +++ b/images/Animals_and_Creatures/Dog/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0101a1bdb9b826a3c44983c1cf3eed73f8aa454d54574d0baa5dee9e6ef8dca9 +size 16502 diff --git a/images/Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg b/images/Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..cda63cc0bdaf7e1a7231b8e7a9b88fdbd0b0eb28 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaeb049a011efa418065b6d14058067ce2c6c00c3f1993ef09ad31aa253e6acc +size 104876 diff --git a/images/Animals_and_Creatures/Duck/Natural/10_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/10_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1884aadfde9210b4fcedf9e2bcb45da94f8bb607 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/10_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c339c7e3dd3316e2e8c351c76164fe9c3f7ab6baf26e6bc52e2cd5a830f4008b +size 13887 diff --git a/images/Animals_and_Creatures/Duck/Natural/11_Duck(2).jpg b/images/Animals_and_Creatures/Duck/Natural/11_Duck(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..82858e4d815c8375aa2ae0bf306c2c6d72e724cb --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/11_Duck(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9efd8209c76e031f33dd56eb6beb2c160d6e93c944206660bdc2c27433e610 +size 139138 diff --git a/images/Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg b/images/Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3983a858a9a1b6a4fa0178523e5aa9beeb57cf26 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66bb3108c29290c960392e53488c412c9c1f6ca1d017cc3602f85474a078e7c4 +size 90111 diff --git a/images/Animals_and_Creatures/Duck/Natural/11_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/11_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64039ba4bfec1f2ea259e7b1577368061b862ff2 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/11_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fda29c2f911cd45ca2faacff8e33d262e1af3440eaf20b672558119d7b71031 +size 52487 diff --git a/images/Animals_and_Creatures/Duck/Natural/12_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/12_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a5b12f8bb8a8b03593f2eb710759121b6e93bfd --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/12_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8200029c5cf361921722d1321498d23357ac6eb0e4c81aa91264ff186a501255 +size 173091 diff --git a/images/Animals_and_Creatures/Duck/Natural/13_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/13_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..884ad00a7013fd7c799babbf15a4610a314024a3 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/13_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b7cb7e424aded8557e02291d931e3d88d80d5f50640c20559cdd73e8631e31 +size 25778 diff --git a/images/Animals_and_Creatures/Duck/Natural/14_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/14_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..443cf4e80b2c4760633ddea110d0e68c7b5665cf --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/14_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457c5fd9b60ab4f671fbefc71be55cd54f957fa81d1c38599723e4937d9c1296 +size 94184 diff --git a/images/Animals_and_Creatures/Duck/Natural/1_Duck(2)_Edited.jpg b/images/Animals_and_Creatures/Duck/Natural/1_Duck(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18570dd19ca3cdb27f718188c035659341dc548c --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/1_Duck(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f17aaf5a1f147177ba4f2c2790714c6e95895af1b587f617a06ddcbe72ac72d +size 7214 diff --git a/images/Animals_and_Creatures/Duck/Natural/1_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/1_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bdf4c486813f98e2763b644a932a6877d55bdd6 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/1_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2859f91e0436b85903ccd8251d4466f4d87092d7605abcd635f5b1f81b7cf7 +size 65588 diff --git a/images/Animals_and_Creatures/Duck/Natural/2_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/2_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86163d4e36e3bd16b6e2c039bf11d0660b89a682 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/2_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9233a1ab26236e9cb8fc21d97f09d501c28d0bb580fcd1297bcae02f493633f +size 17093 diff --git a/images/Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg b/images/Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86163d4e36e3bd16b6e2c039bf11d0660b89a682 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9233a1ab26236e9cb8fc21d97f09d501c28d0bb580fcd1297bcae02f493633f +size 17093 diff --git a/images/Animals_and_Creatures/Duck/Natural/3_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/3_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24385881a044e179b0e50b81b136c1f876ae6fa2 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/3_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0392316748341e845cb1a17d327ac84205c378a439abda797bb27fdb9474faf3 +size 35481 diff --git a/images/Animals_and_Creatures/Duck/Natural/4_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/4_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc2dfb67d32cc6e03d42e0c7af5c4da3cbd055d5 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/4_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad3169eec0eed26de7382070fbc19ddb478441f76e7ca9ac55ffea87911a884 +size 193399 diff --git a/images/Animals_and_Creatures/Duck/Natural/5_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/5_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0af82422d8225b087dc9f3133c66ffa4e89fe216 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/5_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b345604e4c45a0be4e240e618ebc8332bffca178cfe61fa6bd2efe6ee5ef35 +size 3842 diff --git a/images/Animals_and_Creatures/Duck/Natural/6_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/6_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0af82422d8225b087dc9f3133c66ffa4e89fe216 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/6_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b345604e4c45a0be4e240e618ebc8332bffca178cfe61fa6bd2efe6ee5ef35 +size 3842 diff --git a/images/Animals_and_Creatures/Duck/Natural/7_Duck.png b/images/Animals_and_Creatures/Duck/Natural/7_Duck.png new file mode 100644 index 0000000000000000000000000000000000000000..453512a9b652cf4de7fd3c0548542015b5c3b0e5 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/7_Duck.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad77aeff74a6f4d6f4bc8c9247b140d1171a9f18e75fa1089d291c55ef36249 +size 1264036 diff --git a/images/Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg b/images/Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b80a288353e06f46a69c268de09bc670a2fd24a --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a883c98a893151c10f676d91afcbcb83f24161c611c22e1560f762c5fd4f768 +size 23757 diff --git a/images/Animals_and_Creatures/Duck/Natural/9_Duck.jpg b/images/Animals_and_Creatures/Duck/Natural/9_Duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae05e97cff7f87257e25e0c75bc1087e90252472 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Natural/9_Duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c311ccff08de4442510b6b9f56c06560cca0e7d2f55bc5f465aa51939cbcf1 +size 88222 diff --git a/images/Animals_and_Creatures/Duck/Tactile/1.jpg b/images/Animals_and_Creatures/Duck/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b500ed75c6cef754e1885e3c86b7518f6f38e0f5 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3fa4cc179f14065869abf2575caca7df08154b891f5d2a4f3767a9ef4d8472 +size 17223 diff --git a/images/Animals_and_Creatures/Duck/Tactile/10.jpg b/images/Animals_and_Creatures/Duck/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6520fc39a7057c411977360a0c3155a7cb6adda --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474206af50a023055e2dc53a179fdcdf6e83a4960d7da92577e3d53a1dde92f3 +size 20952 diff --git a/images/Animals_and_Creatures/Duck/Tactile/11.jpg b/images/Animals_and_Creatures/Duck/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d3652ccf063aa1fce323085c4e6d7abbb242ea1 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18436cc2c89a1746ab594f9aec6f2c32a65201b2c422fd3d09e0a8c229a38790 +size 5813 diff --git a/images/Animals_and_Creatures/Duck/Tactile/12.jpg b/images/Animals_and_Creatures/Duck/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e79ec1d4c285b5e472242bd6a89e5562296fed8a --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b85c184e941ef3b9537644ea9217502141fdeb52258661b59f7c10c968953da +size 25646 diff --git a/images/Animals_and_Creatures/Duck/Tactile/2.jpg b/images/Animals_and_Creatures/Duck/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..887fb2764d2744cb45f6ef678e2c3eab57f3a1a2 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29108c8927edb035e2db86c7ca149186efbfca2f4c8f1b4460b2b68982a1f958 +size 27857 diff --git a/images/Animals_and_Creatures/Duck/Tactile/2_refined.png b/images/Animals_and_Creatures/Duck/Tactile/2_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..bea695ab29d379a9ff35b562a3d65f0f033dd256 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/2_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79ff5f4817706ae2e618fad00379f22b6fd00d03972884ef5eddd0549094629 +size 602965 diff --git a/images/Animals_and_Creatures/Duck/Tactile/3.jpg b/images/Animals_and_Creatures/Duck/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a166061b2e2f44987bd50febb201667203283043 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed52abeed345e3778e282a90f97062d32bf7b834d27a9b8250d9399b4b6a1772 +size 24724 diff --git a/images/Animals_and_Creatures/Duck/Tactile/4.jpg b/images/Animals_and_Creatures/Duck/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7999a541a5d3c0da2eb76879ce160814aaba44e8 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d37f50b24fdbf808e4efd8f6665abb98b29f588a710a407bb593114e2558f3c +size 4943 diff --git a/images/Animals_and_Creatures/Duck/Tactile/5.jpg b/images/Animals_and_Creatures/Duck/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea1c9304199f1823d0a6fc0f21b7cf8f47ef1808 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1273e244a4288deadd6f0628fb040260c194effdf6033314ef31dfc7889b5c4b +size 9403 diff --git a/images/Animals_and_Creatures/Duck/Tactile/6.jpg b/images/Animals_and_Creatures/Duck/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..253bb5b913de478374d080230ba78a2caf392790 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f2cda657e7622fa639eb9960227b84ac8e7c8e8a1bde56aff6a6670cd763bc +size 24828 diff --git a/images/Animals_and_Creatures/Duck/Tactile/7.jpg b/images/Animals_and_Creatures/Duck/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4930c031f0ce18ff9bb655d114276b9340ec494 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c2a0ac4c8d0af6b6233e8e9b26d9711810ec9d30e51d0d15773995cade2c82 +size 18778 diff --git a/images/Animals_and_Creatures/Duck/Tactile/8.jpg b/images/Animals_and_Creatures/Duck/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21a5e463fc317ac6004af3e6a3b33aa50de42ac0 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee1213945b05542d0a75698bc2c381e9cef8ef28d14a7ae9a0089e9324f5f94 +size 27601 diff --git a/images/Animals_and_Creatures/Duck/Tactile/9.jpg b/images/Animals_and_Creatures/Duck/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41d0631dc512b24d0e7251ca5d90a6a1d7e5e5a2 --- /dev/null +++ b/images/Animals_and_Creatures/Duck/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918ce9c64d2833df2c5fe6c88b40240985adc122120d061cd263b09d5c26d840 +size 29664 diff --git a/images/Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg b/images/Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg new file mode 100644 index 0000000000000000000000000000000000000000..fe2a03a129875c6ccc935045892e752692b33d4b --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77cbfe687f7d6ab16d7c7ec9df9c9ad5bad925e5ad4bfe76b92e84ad618834b7 +size 265737 diff --git a/images/Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..faa301772aed154f7eb33a01879d03c5c31ce956 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db36703d2d82ca9086a304162418f85068d842edfcc7a077b7b2fc01ef63a8ff +size 173152 diff --git a/images/Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0dc74ff1c6f8eb522537a149bca4890e9da48d6a --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a12f0b3659f4ef9905304a8450d5f35cd267da210c42057de923acad5b0842 +size 164544 diff --git a/images/Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f3145c30de61c95fe25eeddafda6ceb6d97dc62c --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b7f3a2b9892948d22007cd240e4ed0dd17d9b6b26d8fa4d655552aa36f39d4 +size 135885 diff --git a/images/Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3c837e9b3a16bd51332bd227c3b4113572d27e33 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a699966662ca147c195d3679daaed91c11aee52d15cfd61d67c4abc181fc7ea7 +size 120090 diff --git a/images/Animals_and_Creatures/Elephant/Natural/14_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/14_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5501d88716af9c47c3fcf2292ea37f02d63df444 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/14_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275f83037f3b1636336db81a4078bf1b57235060c61178a26ab8cfe1ff8ab7b6 +size 181623 diff --git a/images/Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3437dfbcf17ede9cc4c08c9b84cb24ecd5877999 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64388c55ae1a6927edef3f105fae86b02c098839162ff9db498c3d1436dd2f10 +size 252561 diff --git a/images/Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a15ecd78efbdcdd93f778b1afc94cc80e7d0302f --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f081549a2f19190e02cc83e0506fe9f35a8fa8e424234cb4699e75a7f0bc746 +size 83311 diff --git a/images/Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..449c4add11ac2bcfbbc09393e16eabbace9c29e3 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1ec2fb1b80f18209be486d9913bafbf65caa23f31ed1a894a71bdbc75c1dc8 +size 522015 diff --git a/images/Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..74bc437dd5a7527acfcbdaa211dacda409e5b4be --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad30573d04f785d24e1b6779de7f172bcb178522f4f344aaf8bd37257d9c774 +size 513785 diff --git a/images/Animals_and_Creatures/Elephant/Natural/19_Elephant (2).jpeg b/images/Animals_and_Creatures/Elephant/Natural/19_Elephant (2).jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0af19840b670096241e371a646c2a2ea039c7fbe --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/19_Elephant (2).jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464fa9e8b415a5868ae3299994b4ad3bb16e56c3f92e38ff8a3ca770292e02b6 +size 369996 diff --git a/images/Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..391d76a83a8ad1485e0a7948add7447c28d694a4 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6a9f403423c2358105d710c65d9c529a6aa98cf806e8ed0c28771b277f84be +size 634616 diff --git a/images/Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6a1af46ff8207d497f46ebfbe9f7f69f0a09f05e --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e166d98b561c536be2ec6c7e44e5972c14bb78f7230e5fd04850ba06f22e50 +size 598853 diff --git a/images/Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a106d472e41c06bbe15f13a87019b4a3164e71d7 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3020446e464c15f6302d350e2e85870dbd9486cef13efd50dedd4f0f49c2d099 +size 263669 diff --git a/images/Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d86b4ac32a8b4856d261a74b4ccd023a60f66e68 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dac5d57122baec2eb3898c587050984ca5f27f56b2920a8c17c37fb7d0a8438 +size 297326 diff --git a/images/Animals_and_Creatures/Elephant/Natural/3_Elephant.png b/images/Animals_and_Creatures/Elephant/Natural/3_Elephant.png new file mode 100644 index 0000000000000000000000000000000000000000..6565a18c862fb205b85fd77b3014c7a6fd8b3b6f --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/3_Elephant.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1da29b79de21c65961c706b078d76dccbb22b206aceb2be3601a1b84f0fa8d8 +size 531186 diff --git a/images/Animals_and_Creatures/Elephant/Natural/4_elephant.png b/images/Animals_and_Creatures/Elephant/Natural/4_elephant.png new file mode 100644 index 0000000000000000000000000000000000000000..188e0bb0a45d22164b8b2d10d4e5a4b625080a4e --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/4_elephant.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7106ca43d9402bc10a47d1743302dafd3f4e642cf078a7297ddfed0f9d6965b +size 469992 diff --git a/images/Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..aa81c0699fbde29727b1140eab25aa95f21829e8 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cfd10bee11a735ef500fe7d6e8fcb9bbdf3480f94980730686c88bf10bd6b3 +size 236687 diff --git a/images/Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..23bdf6d04c4f9df0f5ff269193ec10043901fdc8 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab7b18816c3a29146d7b04f8b5d2e4f949d040a39b446085efbb842bdfd2e03 +size 407559 diff --git a/images/Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..74f84d604172a118761afa6583d42bfa171042ce --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ffe95dff609e5867b8e8a9df690cfbb04863f72e6e974b658fa6c9deae5003 +size 53605 diff --git a/images/Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d10315d09d8ac4345f8408cc3e4b859812949078 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc6543aff79ed62d82a16a449996f3e4c1207dc3c422a0c0963b7a2dc7d39fc +size 163544 diff --git a/images/Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg b/images/Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..54494c6ad43bbf840db7857a2ee2d3c2a683da40 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b487ba384977fc42085d0c01eda328fb317f1ee61a851791c07a7fcc3749d8 +size 90115 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/1.jpg b/images/Animals_and_Creatures/Elephant/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb7e78921e07b1ca87bb8bd9c18277770f668716 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c546e2bd3fab25f8ee7bd9dccb7df25e9313da8e9c8a80ce4e673dd4bfb2d1b +size 73840 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/10.jpg b/images/Animals_and_Creatures/Elephant/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba41fb7c9be1ef5d82b7176378252b81c18be269 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98672d81515c071299b90bee9e21b3adefcf7a4b27e6322e3bc2ab33554dc1a +size 280250 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/11.jpg b/images/Animals_and_Creatures/Elephant/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2db8abc5574841998c219ba271dc511451b71ba1 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b015f08386ed0eb24f32cf025d805f92ab7bc8f7abfda94050e80a449de8b5 +size 17860 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/12.jpg b/images/Animals_and_Creatures/Elephant/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..276f50ad4842ed69ba4bdba1dfdf83d5d2bafbaa --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a9aaccf57b5635b4a6a31e3457a96a35eac3b4e941937baeecc6bdfb79dd3a +size 21908 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/13.jpg b/images/Animals_and_Creatures/Elephant/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94b95f1493ab8206233902ce7322cd125a68ac38 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33fce42cb388b1b68442fba995888e98dcbcce317156be566e37e2d54628dd8 +size 17877 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/14.jpg b/images/Animals_and_Creatures/Elephant/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfee75af2850f2031931e05813390f4c6466e79b --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08a4465865a89aa2f089cd9505c3b9d5e731491bd81e84d9b0273136a237490 +size 15405 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/15.jpg b/images/Animals_and_Creatures/Elephant/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4acc8477face4599b567c5c943dec9f67c895c1c --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34cb1dbaf59ba710bbc06c3e5b912a7bdfe6965c55985a7e6a1407b1ede3346 +size 21865 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/16.jpg b/images/Animals_and_Creatures/Elephant/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34b80897f27bd4954f94ca310a5387ffbe521f62 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525c0bc0a728479e5d12ea018c702742be38b2b7b36eedc8657b16dfe278183a +size 16093 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/17.jpg b/images/Animals_and_Creatures/Elephant/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..911e61eef75938a27b36c51494b2faec2ad65b27 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f55d148bfcdac72dfa8eb2fc81f4eb55f5a05e6c37223af5e0742a586345a5 +size 16867 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/18.jpg b/images/Animals_and_Creatures/Elephant/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df3e05518a5292258cf182f8d3296729f10da6f8 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832d3fc580a52eb2670421a99a17e08ef4a35fd87f13ef44a660c61cf81e1dba +size 80456 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/19.jpg b/images/Animals_and_Creatures/Elephant/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..884ef174fd3c648521f624faaf3682bd788d5ee9 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be3e3e2f9147334de2fdc2ed45791e180e46f913cd1c52219a7dab1b803100c +size 19866 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/2.jpg b/images/Animals_and_Creatures/Elephant/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fef17089f60d2622c75fd2f6058cd9360553ca5f --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d30a62bfaad1addd6dd9042da0ee9cd129934a160745e1cddb810ef280ca72 +size 88991 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/20.jpg b/images/Animals_and_Creatures/Elephant/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f8ea177018cdf9deaec94bda48be07fb89a4715 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8914b389afd0837df7c83029aa760812d9b06ffa46930e2a3cf7693f3609570f +size 27897 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/3.jpg b/images/Animals_and_Creatures/Elephant/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2d9ff896ee367ca717ba5188738d75c299ba79c --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5ae5b0b0838711a4f215c16d2e70ddea9fdc49552925d5d8b13529a14c6630 +size 327824 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/4.jpg b/images/Animals_and_Creatures/Elephant/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c4ddafb535f334bd6bbfbbb649d78bf15940fb8 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb994d3c12140d7500538c6cdb450969a7959f2bd1aa85b60de551fa5cb7c8b0 +size 767016 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/5.jpg b/images/Animals_and_Creatures/Elephant/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86a22c2844dd8e8872745d53f2f4d188a931a300 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bdcc32ffbfb3c4ccb3fe5b7fcac691fdc7c9c2de11275ec72915c5f4524feb +size 632462 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/6.jpg b/images/Animals_and_Creatures/Elephant/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf56dda504d9559c88d5d24d6170f71d1387022a --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a3039f299bdf068c0a5686a9c068001e963d88fc53c4bd832496c5a0f28d8f +size 277589 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/7.jpg b/images/Animals_and_Creatures/Elephant/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce80f02720f0796d90feaa7bd351a1c931a93e7 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d307138931ea28f65721c8c2555687e80ad0b7edba4f43b5497617b3c777c2f4 +size 249061 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/8.png b/images/Animals_and_Creatures/Elephant/Tactile/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2f7933ac68189591374f9d69e73082cc84626881 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f8729ff3b67fa35acae08d8361310ecaeed28ae0163205cb43e217b7c1aa56 +size 689602 diff --git a/images/Animals_and_Creatures/Elephant/Tactile/9.jpg b/images/Animals_and_Creatures/Elephant/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73515203f3484bf94922b8e68548a1b036d14aa9 --- /dev/null +++ b/images/Animals_and_Creatures/Elephant/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbea959928180fba1bb23c03eb5023202c945d8344aa7c6b71dbb9a19585b5e1 +size 517736 diff --git a/images/Animals_and_Creatures/Fish/Natural/10_fish.jpg b/images/Animals_and_Creatures/Fish/Natural/10_fish.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34dc07d35e13e9fd3e19f5a219fb731113f77e5 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/10_fish.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8801f434c1897d7ba17e703df991f48845c6ab8f0fbf14b77f839236eddc9f7c +size 34665 diff --git a/images/Animals_and_Creatures/Fish/Natural/11_fish.png b/images/Animals_and_Creatures/Fish/Natural/11_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..56da56d8612a14bea1395384728b4a42ae4c1905 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/11_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d725f756c2468178f6a646803a51c07ed487f3837e975a1f9588e5ececcfa3 +size 198981 diff --git a/images/Animals_and_Creatures/Fish/Natural/12_fish.png b/images/Animals_and_Creatures/Fish/Natural/12_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..5450cb32434675b527b3b681b2739939b73e790d --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/12_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840e9ad3af4e495cc33006fa51524772cda52a8dd97b59032f0ed44e356c0fd1 +size 279326 diff --git a/images/Animals_and_Creatures/Fish/Natural/12_fish2.png b/images/Animals_and_Creatures/Fish/Natural/12_fish2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f33af6bcffc712dd882dce5967c1b35ff2d1039 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/12_fish2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67b2f1a0d371620876f6c82816999bb12bc183d4fe3a0ec361baebecb51c3f1 +size 248934 diff --git a/images/Animals_and_Creatures/Fish/Natural/13_fish.png b/images/Animals_and_Creatures/Fish/Natural/13_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..e0efc9de95892aefb791d454fd7363e828711d99 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/13_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc7e39e5932d9e2e3412222fab17ebb788eeaaebd544be9c0bea0bc23f5c6c6 +size 92071 diff --git a/images/Animals_and_Creatures/Fish/Natural/14_fish.png b/images/Animals_and_Creatures/Fish/Natural/14_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..514bb77d8ee05787e48640935fff9d2875b28e36 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/14_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabcba89f5edde18fc265d513d174db97d74363de4bccdc3ae064da6ae5fb068 +size 122114 diff --git a/images/Animals_and_Creatures/Fish/Natural/15_fish.jpg b/images/Animals_and_Creatures/Fish/Natural/15_fish.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3528b46ae65065292c062c490bb57f0ce360d447 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/15_fish.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7262ceeb637b883f67021831a854574b7835724180fee89d799505433b695587 +size 28251 diff --git a/images/Animals_and_Creatures/Fish/Natural/16_fish.png b/images/Animals_and_Creatures/Fish/Natural/16_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..e257e34e7c89f8757fd17fcca25877ad463639be --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/16_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6ec3240d05932563d7787019f2cba73be717bfa831365d23426ef7714305bd +size 206173 diff --git a/images/Animals_and_Creatures/Fish/Natural/17_fish.jpg b/images/Animals_and_Creatures/Fish/Natural/17_fish.jpg new file mode 100644 index 0000000000000000000000000000000000000000..274e4b1714128e2c7fbce99d5f030292765673e9 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/17_fish.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bf1f753577f63c2751616e768952ae7db40cdde896f7c0f8513c23c975904a +size 54677 diff --git a/images/Animals_and_Creatures/Fish/Natural/18_fish.png b/images/Animals_and_Creatures/Fish/Natural/18_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..7f3a8b3977f1d4ef4228c025ae4cd174d746646b --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/18_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d882ebff2f4e8154fb8de2041cf4fcc5f6324e3b02bd8880d514ee956ae9e1b +size 146618 diff --git a/images/Animals_and_Creatures/Fish/Natural/1_fish - Copy.png b/images/Animals_and_Creatures/Fish/Natural/1_fish - Copy.png new file mode 100644 index 0000000000000000000000000000000000000000..ad9ce21d687efd2d2e732c7c36d8cbf62d6d011f --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/1_fish - Copy.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa0f3ee9562dad3915fabf90ccb7416fc05189d2d2775b81d35bf1429e2204a +size 52156 diff --git a/images/Animals_and_Creatures/Fish/Natural/20_fish.png b/images/Animals_and_Creatures/Fish/Natural/20_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..8203269ae63d0e68cd6c51e56f2364b8791d7267 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/20_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bc47e2a0acd0a93997235e387dc0a50217d563ce00a93b1cc9aedf5ac405d1 +size 142926 diff --git a/images/Animals_and_Creatures/Fish/Natural/22_FISH.png b/images/Animals_and_Creatures/Fish/Natural/22_FISH.png new file mode 100644 index 0000000000000000000000000000000000000000..3449bc9cf288cf3d29dceb50ed1d7ecfa6e4c06f --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/22_FISH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f0fe05b38243cf34b3c43ed608ff8a53b36f1ccb0c0332c6dd971b064360a8 +size 92024 diff --git a/images/Animals_and_Creatures/Fish/Natural/23_fish.png b/images/Animals_and_Creatures/Fish/Natural/23_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..0433e5e221139db70bc792c947df7ca3ea27b0b6 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/23_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dbd858bdaacf29aa2768fe00dcbc5193db1aebebc25281b7f92e0148910268f +size 154488 diff --git a/images/Animals_and_Creatures/Fish/Natural/24_fish.png b/images/Animals_and_Creatures/Fish/Natural/24_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..7824ae905c31456141ddfc307b1ec464b563ee40 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/24_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee022831ec7440632bf535c5202968ef6d37e6f25db3ef1a42bacb30d68ef7c0 +size 137905 diff --git a/images/Animals_and_Creatures/Fish/Natural/26_FISH.png b/images/Animals_and_Creatures/Fish/Natural/26_FISH.png new file mode 100644 index 0000000000000000000000000000000000000000..6f17d08eb37e8501d020e8556f920fcb49c15e08 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/26_FISH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02de611ffd71dc7da304d3bc2771bd81638c6cb4c605e3b1e37197d98221eba9 +size 91926 diff --git a/images/Animals_and_Creatures/Fish/Natural/29_fish.png b/images/Animals_and_Creatures/Fish/Natural/29_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..d59346ff1b486cedaf6b2b5f29d5e99b6a2256ea --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/29_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c739dd869c8190508ad4e78fe48c2780d3f81ce85e9b4549cd7151f6ca26408 +size 159177 diff --git a/images/Animals_and_Creatures/Fish/Natural/2_fish.png b/images/Animals_and_Creatures/Fish/Natural/2_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..99b82272cf18bcb4698e84da7e581361374c44ae --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/2_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01887617816f563f866908653168ed9708c143397c771ace66470cc993ab2a10 +size 117851 diff --git a/images/Animals_and_Creatures/Fish/Natural/30_FISH.png b/images/Animals_and_Creatures/Fish/Natural/30_FISH.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba15015302bfd3dd02a94ab4d2c9c0d0141f14e --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/30_FISH.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dae33d86d556df5b0da249fb1c94cee4f5929b6fc15a51164f7aef591716a03 +size 120520 diff --git a/images/Animals_and_Creatures/Fish/Natural/6_fish.png b/images/Animals_and_Creatures/Fish/Natural/6_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..55a6c4bbfe95734b83dcb7160d4cd296e34fd079 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/6_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8845d11e80c54d9f88538bf86ac7c12cf214d00c5607df3559cd720910b2399b +size 144559 diff --git a/images/Animals_and_Creatures/Fish/Natural/7_fish.png b/images/Animals_and_Creatures/Fish/Natural/7_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..82d34ce29f3ef6346aab0e4016cf9a9230bade35 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/7_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13458bcf1b8f60d734de268e2043b79c0f66b45a6567039971038a270da96547 +size 230337 diff --git a/images/Animals_and_Creatures/Fish/Natural/8_fish.png b/images/Animals_and_Creatures/Fish/Natural/8_fish.png new file mode 100644 index 0000000000000000000000000000000000000000..f129586e3e053adf5dda0df2c05974f5bbdea0aa --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Natural/8_fish.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e0d65bdc2a6c9b716199c46045f9a737728d8e03cf9f32f555993eb1a11ebd +size 79014 diff --git a/images/Animals_and_Creatures/Fish/Tactile/1.jpg b/images/Animals_and_Creatures/Fish/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c86ff85d737aa509d916b3c94ff35b83117da027 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4902a341f2a9680915bb58ce70bdf230dad2ca79096a2ddfc947155044e0e1 +size 131363 diff --git a/images/Animals_and_Creatures/Fish/Tactile/10.jpg b/images/Animals_and_Creatures/Fish/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78d838f409cc44aadbdaf585a8d6d99927d536f9 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11f526f0866d65a503fde5e16e9c564b2eb07295fadaeca6f8cfcc9cfbe3bfe +size 19801 diff --git a/images/Animals_and_Creatures/Fish/Tactile/11.jpg b/images/Animals_and_Creatures/Fish/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2590d73efd2439a2b8128e2f896c6af36c8ad209 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745c1ecadadbdc348270cef4ebb8ecf6f9dbeb4d7754d19cb85fbae8ee36f5c9 +size 54093 diff --git a/images/Animals_and_Creatures/Fish/Tactile/12.jpg b/images/Animals_and_Creatures/Fish/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7e8ae9a836082b9d3f1da401131c97c1b15ba6f --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0a80318061b314d70a37eb78865dd6cb0b34562fb679b69ac8747c1fbd8e2b +size 261878 diff --git a/images/Animals_and_Creatures/Fish/Tactile/13.jpg b/images/Animals_and_Creatures/Fish/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..772750afef14e98dc454fe1db5bcfb0f94c894a2 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e049bf10be8519df90c129148d98b8a00c726f54cac5248cdfabbf3ef75c46be +size 36012 diff --git a/images/Animals_and_Creatures/Fish/Tactile/14.jpg b/images/Animals_and_Creatures/Fish/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ecb86a160f0c49a283c698390aa9e90c5b204a5 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079452a9bfcbcb484146fbe221bbad064142e171836861bba3c2b3aaf4ecc312 +size 165237 diff --git a/images/Animals_and_Creatures/Fish/Tactile/15.jpg b/images/Animals_and_Creatures/Fish/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bd3183c8e4cf6ff45a4000542a47398ee9d4a4f --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd896cbcbfcdd95ddeeace1bf051397ae17292e4eb47449c5cb87eeb568f46b2 +size 13381 diff --git a/images/Animals_and_Creatures/Fish/Tactile/16.jpg b/images/Animals_and_Creatures/Fish/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f2430f343bfff8867309c21474ed933d81064d4 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5382513e2bf3a58e63d72a1d87cd2f695ee88450682a7197ecdac8cf2141c4f1 +size 167783 diff --git a/images/Animals_and_Creatures/Fish/Tactile/17.jpg b/images/Animals_and_Creatures/Fish/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0a895565a56617385f5262c58f01a0dc9c44637 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257b82603dadb16608e94a43a1410a7b44b9308ff5cffe4248b23f1da79a8252 +size 40812 diff --git a/images/Animals_and_Creatures/Fish/Tactile/18.jpg b/images/Animals_and_Creatures/Fish/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e355cc3b61dd5e6dfa337219a157e4630389600 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab0d4d96e98326e0bc608f8fba8ceaadb16f142e5d93661e1939e0241914bdd +size 20747 diff --git a/images/Animals_and_Creatures/Fish/Tactile/19.jpg b/images/Animals_and_Creatures/Fish/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f9d5e65c70944380c661617021e76ec91168b66 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d798f3b7ae58609f0f1014103a2a0035effb46d381354af420ae65ed57fcff7 +size 15071 diff --git a/images/Animals_and_Creatures/Fish/Tactile/2.jpg b/images/Animals_and_Creatures/Fish/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b5c85695e0a7cc9e9dd0e8cbacab5ecfc4e8b79 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbe008fe07daa0d2cd842afeeeb6c2e0d1f7365bf03f7ab56dd9fa74ce89a4d +size 393644 diff --git a/images/Animals_and_Creatures/Fish/Tactile/20.jpg b/images/Animals_and_Creatures/Fish/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..788f619f4b03bf12edf3b4af8ff7a6c27bf602ed --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a9c95d725a10776924e55b866be6df4dae86b68edb298db2d975d976543b7f +size 7957 diff --git a/images/Animals_and_Creatures/Fish/Tactile/21.jpg b/images/Animals_and_Creatures/Fish/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69f65243b262096c470c39e91a0c4ff2e33a9069 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c076c687a7a3d685ad86121c0c2e4524d4c699d7b333d1cd7538931bca757f +size 41737 diff --git a/images/Animals_and_Creatures/Fish/Tactile/22.jpg b/images/Animals_and_Creatures/Fish/Tactile/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74b5a853a11383e532cf898adb142dc086d804ac --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3525c3220d2d45602776714789d4ae85813b18a0b8e975cd8d1b27d983e13b9f +size 14885 diff --git a/images/Animals_and_Creatures/Fish/Tactile/23.jpg b/images/Animals_and_Creatures/Fish/Tactile/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b32bf354e0d817ff2c094ade7c6aea66affccb9 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415a6c7ea03227fdc146ef00381ce71ecd4f833a5b10de39ded901cd4b460f96 +size 13115 diff --git a/images/Animals_and_Creatures/Fish/Tactile/24.jpg b/images/Animals_and_Creatures/Fish/Tactile/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c6a05ac0a53576039067273f1b95f3e1795ce13 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7736d473123d764594ca0b3227b13b830e59cab506e71680108dada8be614f0 +size 26683 diff --git a/images/Animals_and_Creatures/Fish/Tactile/25.jpg b/images/Animals_and_Creatures/Fish/Tactile/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb40eed694972b28d7a6b2af1cc98a65a03c1127 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd3c79552c7d2316b1e8d708a3b4e4075ab6cbe273d4d560686f0107b712b37 +size 14515 diff --git a/images/Animals_and_Creatures/Fish/Tactile/26.jpg b/images/Animals_and_Creatures/Fish/Tactile/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca864bcb932bf0948877eb69d6a5b67442c4fbc9 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b2f006e24f3163d1dcf2e257377dc9da2212877a1d73f79cdfa66628d3056c +size 30501 diff --git a/images/Animals_and_Creatures/Fish/Tactile/27.jpg b/images/Animals_and_Creatures/Fish/Tactile/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d67524640bc00ceeae64a0fd667ca333bade9c7 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029b6319a9890008b70bbadca528d643773b84b7b7396b964cdbb21923f67ae6 +size 60734 diff --git a/images/Animals_and_Creatures/Fish/Tactile/28.jpg b/images/Animals_and_Creatures/Fish/Tactile/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78192c864406affd173e982c86491ed1a52ba1a9 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e799d0b29e5aabe3d89d079f5861f8daf472ae56278ae9407c16af201a014f2 +size 25132 diff --git a/images/Animals_and_Creatures/Fish/Tactile/29.jpg b/images/Animals_and_Creatures/Fish/Tactile/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6054eb80aab687ea23105d782cbe5b320f87101c --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6a6a5608c32f86edca7daa0bddd8e2e507fee6792d0310a514b6a8d2e0b1b8 +size 35530 diff --git a/images/Animals_and_Creatures/Fish/Tactile/3.jpg b/images/Animals_and_Creatures/Fish/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a352235a46f1f8a03eb66b143f8ebea952d52255 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19a6eaaf08deada71d378da0c563fbc4a57ec3e45f37679c0e3d3ca5a11338c +size 11273 diff --git a/images/Animals_and_Creatures/Fish/Tactile/30.jpg b/images/Animals_and_Creatures/Fish/Tactile/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f363ced3bb8660d8814998fffa4753c401b3280 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8945e1f2138041b0088c79c2b0542017fac0afce64710fecf401a762d9e4227 +size 19330 diff --git a/images/Animals_and_Creatures/Fish/Tactile/4.jpg b/images/Animals_and_Creatures/Fish/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4985e69d3a55049217d2f34ff47364b9f6ae147 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a9768e47d76bcce6fe4b3331e5250e1359ebb4ccf8d4e9e7a3c1f7ccf3fab3 +size 10020 diff --git a/images/Animals_and_Creatures/Fish/Tactile/5.jpg b/images/Animals_and_Creatures/Fish/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1c3e9c684b661964cc55ab3e6df1282414ed18e --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feba508d512124a8a196ec4e7c97904b41f6f1509992f3058739d74707cee58f +size 21147 diff --git a/images/Animals_and_Creatures/Fish/Tactile/6.jpg b/images/Animals_and_Creatures/Fish/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..130eae4c5bee3a90f2d1c52c9c1e7460614bd2f7 --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b5ab7028fe2960618b1734443868c93000938c20baab904669cba7c501b128 +size 9715 diff --git a/images/Animals_and_Creatures/Fish/Tactile/7.jpg b/images/Animals_and_Creatures/Fish/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29ef941c12a10147a26933a9ff330d36ffa8b5eb --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c26cfcb44d324a79ee1b63f03c0906c27b41519f0c315ce3cce1d48e0fec30 +size 54856 diff --git a/images/Animals_and_Creatures/Fish/Tactile/8.jpg b/images/Animals_and_Creatures/Fish/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d1b397a73eb485f7167360a267805d87ecab6ff --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de132815b5cc69369bc4cab2cfc9465f154cb4a5a52706aa45f87a76a71240c +size 301686 diff --git a/images/Animals_and_Creatures/Fish/Tactile/9.jpg b/images/Animals_and_Creatures/Fish/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..788f619f4b03bf12edf3b4af8ff7a6c27bf602ed --- /dev/null +++ b/images/Animals_and_Creatures/Fish/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a9c95d725a10776924e55b866be6df4dae86b68edb298db2d975d976543b7f +size 7957 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_1.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..726b2e5c6f0d604267b8fa87ec8668ee8f8b810c --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344ff8f772af6fcf7913b05591fb5f5b14577661f7300453ec0cf526b3ab3866 +size 1702173 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_10.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..234657b71760c709c3963c62a9a9f19e8847e5b8 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe69f4ea199aecb01fe53f1a44eff68bebe23b5ad08d058761f9a1e0e012d50 +size 46781 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_11.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1a1ebade6ae74f332ce2b28b6d6f7c895e867ee --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f698ce2411a2c4048ab2976c329acad0193c5cf79c97fc772b1a86fc4b07a539 +size 34206 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_12.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b25a6e08c4e8cc70c27bbc85229b3d61cf801764 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76617b9a86d759da84af694cfa9bff2c27c389ad5b40eed143c63d5869fc3334 +size 714943 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_13.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99dc985112afe78ea3961a546d6ed1b1c6086a5f --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25780ed3546d12dcb440022a8ff9320e7936ff3d0263403527791309e4699125 +size 245466 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_2.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39e2459cfea64a16a4209a288009c24e9f2084a1 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e56571c3ff977276cfa82766f602029c9c022ce232d5219868c55f6d7944b4 +size 34103 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_3.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6448080518866db543b2e638c6199917fd3f19ce --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea53f959b23af89b8b0f9525d9f06afe35d2db5f3ed9a9ef16df3c6c750f0406 +size 154217 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_4.jpeg b/images/Animals_and_Creatures/Fox/Natural/Fox_4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ea484b79897d16745aee2d527df4dcf09805600b --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f22b143ea812af6df884a549a9efbf1f62f737c787472bed88fb2880c6c1638 +size 994991 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_5.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..726b2e5c6f0d604267b8fa87ec8668ee8f8b810c --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344ff8f772af6fcf7913b05591fb5f5b14577661f7300453ec0cf526b3ab3866 +size 1702173 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_6.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a1682dbadfb60bb701cc0990e5d9d6b68d217a4 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6566b45643179c2cb19d9051a178d03edad5fae0e0824d50e58afc40822da1 +size 39170 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_7.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b31301a64b214ff7e02abcf9bd90a2b969fac35 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f31ad01014b9bd24690f960324085ad4ce3db2d828e33e50c9a1a3990ec52a2 +size 1346896 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_8.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecfebced368fcfc449593f2e12dae00c597d288d --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119f419d01f689da8eb315189296af51df8169c71731494678625076419bd98b +size 1151286 diff --git a/images/Animals_and_Creatures/Fox/Natural/Fox_9.jpg b/images/Animals_and_Creatures/Fox/Natural/Fox_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae3fe3295d1005b39cdccc87ef216788a62589ff --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Natural/Fox_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2f449359d559b701709b95e4b86e9354dc108f60b5f35dbe751a612305e206 +size 196961 diff --git a/images/Animals_and_Creatures/Fox/Tactile/1.jpg b/images/Animals_and_Creatures/Fox/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb8f9145b7067959e4a4b5342d3d703563c62ff8 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f87154fb7505cdb799bdde3b1c4cd8402560539d82336563d3c0b2744e64b5f +size 56753 diff --git a/images/Animals_and_Creatures/Fox/Tactile/10.jpg b/images/Animals_and_Creatures/Fox/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32e5660ecf7b72abd9256be1e351b9fa1dfa352b --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e9e6c4f450ae1e5d9611aaa802b208c93f8ee97e6bbc4c814fe3f0b6b5d95d +size 22541 diff --git a/images/Animals_and_Creatures/Fox/Tactile/11.png b/images/Animals_and_Creatures/Fox/Tactile/11.png new file mode 100644 index 0000000000000000000000000000000000000000..46b5a446f1cab8e8d99fc1721209d95cc7490f85 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c54634b4022efe40a582045df9e8f447d363741a3a30ac8657ebafef81bc61 +size 88145 diff --git a/images/Animals_and_Creatures/Fox/Tactile/12.jpg b/images/Animals_and_Creatures/Fox/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb7d2a85b23e4cc0b8ea90f715c2bad00889b1dc --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cc88cb89d45a8ce1f913c278aa13ae01ca248aa01f83f9b585ecd58594dd52 +size 11606 diff --git a/images/Animals_and_Creatures/Fox/Tactile/13.jpg b/images/Animals_and_Creatures/Fox/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01d0792adb8272df6010e779d906d60a9d5f7823 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7241448b420f9f6928510e1488cc27347344dc3ee114c1723b58d1113d919a50 +size 22304 diff --git a/images/Animals_and_Creatures/Fox/Tactile/2.jpg b/images/Animals_and_Creatures/Fox/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f76b27060d50c9633d6beb15b9377fde8f242196 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39de7cc1cd8966d074eef35b38374a37d8bbc201ef72f39cb5b02d59c483947 +size 52778 diff --git a/images/Animals_and_Creatures/Fox/Tactile/3.jpg b/images/Animals_and_Creatures/Fox/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98f0e3f67a50591ab3addc9065f984548c9505c4 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b45434229661e5cb80b55f424270543735d0a4263f27945cef5f6540b86ccfd +size 6150 diff --git a/images/Animals_and_Creatures/Fox/Tactile/4.jpg b/images/Animals_and_Creatures/Fox/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79053d0f73cbcd10f2bb7c15eba6b23c1804e53f --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f32915d048771ce964f9b194888aed1a7531cbd32a51baba66baf49aa1da14 +size 38137 diff --git a/images/Animals_and_Creatures/Fox/Tactile/5.jpg b/images/Animals_and_Creatures/Fox/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f74a4a05c65e087e456be854130c43a3dc4676fc --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25763ba9a21d455df7ee3c7a0624099ea7f8d228e96f0c62e233e8b41dbc578f +size 9710 diff --git a/images/Animals_and_Creatures/Fox/Tactile/6.jpg b/images/Animals_and_Creatures/Fox/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..712632ce7f0b2f11872c0dbec209222dc6b35f87 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3534d03ad2e876afe6279e49496b393bcd270fed0f59bbeaa80729cf924c3ffa +size 88105 diff --git a/images/Animals_and_Creatures/Fox/Tactile/7.jpg b/images/Animals_and_Creatures/Fox/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c6e5ed4e44fece249752c17174c1208c623d031 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a86e903c4c1b95203d00c70b7c3b703456522cdb6796c009ca1549305de92d +size 25114 diff --git a/images/Animals_and_Creatures/Fox/Tactile/8.jpg b/images/Animals_and_Creatures/Fox/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c92e3fb49c7a1acdf1835e17d0edc53519a904ef --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c898438d143d2df30a08bc276dcd612a767e861f46f752f6e6380087a53b3e2 +size 7326 diff --git a/images/Animals_and_Creatures/Fox/Tactile/9.jpg b/images/Animals_and_Creatures/Fox/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e73bed0632c01f1fdddf6db9dca6667e68c2ecc5 --- /dev/null +++ b/images/Animals_and_Creatures/Fox/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12824b8396b3416bbe1b8a04e8974c76eedfdd37797e1bd21df9fe262aa70874 +size 6498 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg b/images/Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb3f9e78b6f6fbe11dccff29a511716a590678d8 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23373c319b79ffa032c5df3c650446923eb532b8ead3fe8edf0073f99fd5bd85 +size 24740 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1f259353c1a0c0f93fc55bd8725c2659dbc59cd --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2d663d6847f685311ae6515afc9c5caeac9f3d10c70eef69703f3a76fe48f2 +size 95551 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e553a3764186edfe409153320a7dc86ca8071ad4 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e26ebbe2d7241779a058cd1ea2684d4cd4ebcec794d3870a16d3edbda8f3cc +size 792799 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg b/images/Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dc68438e84974801df8767d1bc7eef09f7e2cd7 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121427cbc19ba702774caafbb0c1c844d0cc1e3e92ff709a96e0b1330a436450 +size 12423 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/13_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/13_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90298e7dcad4a543e4843d12c3395cbcc5ba48be --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/13_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bb5035f35c3d54501fbf910d43a3c5f4886de31ac315c127e57a6aa616a892 +size 148289 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/14_Giraffe(2)_Edited.jpg b/images/Animals_and_Creatures/Giraffe/Natural/14_Giraffe(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45e28acc9eeaf575bc4489cb4c778f9c57c1b996 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/14_Giraffe(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40404c3f6b24218d0b9e93f09336bb505ecc0f9de144f3d8dc4c9d31b8cf54b +size 13324 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/14_Giraffe_Edited.jpg b/images/Animals_and_Creatures/Giraffe/Natural/14_Giraffe_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30d731ab7d6a5ddd6b2a3a6a1400b78aa30eba8c --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/14_Giraffe_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c82feb46afd037f40d4e037e4cf76f864f7c836316b8f4d7cf70dabdabfaf8 +size 12103 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0793263cdda4b26654744f9cfdcf2d28de37e2b9 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92da2f179b10f05d642d6dc50153d9923b34d216b822d57c567022fb02c2746a +size 137677 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f14cbc47bb53eeeab8a5b0307ac67cd8a420e6d --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b3adba9210b69a0f6b7a6a4cf2746304b771c49439b75a6f5933e6ee13e7a6 +size 190532 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg b/images/Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8d3ea62f5222b9893f694eae5b09ee3fe1014cab --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2581a8640c3655b408d393306856b4f5c368963dd1bff3b02d8b988f2a82b732 +size 1061170 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg b/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6e58402c14a9c2f7bdad592ea01feecec9251e4 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7aef585cd6c9af89adccff3de2df092bcef14e96cf81d04d429dbe2f188fc2f +size 10890 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe(3).jpg b/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f0893b7919bb864fa6a8077d68204560b3fe093 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50f7a8195a4794781ad3ca88113080ebaaa89f83d39ea0b13277f8a7cfb2ee1 +size 6543 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe_Edited.jpg b/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f5b3c2cb895698e6f9a26342a0fe705e3949862 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/4_Giraffe_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d2cb61271d960d78236121edce449523b1f93926803023fa49e9a4558fbea6 +size 16247 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ccb1db753cfceb1148a765e12eebb3a2b99653c --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d43a2b3fec23e2f13bb8881994e2c36d2246b979615a953fddeda62e0c296a0 +size 40387 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/6_Giraffe(2).jpg b/images/Animals_and_Creatures/Giraffe/Natural/6_Giraffe(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a92c10cfcf9fbbb9d11bdbe85f54ed733670065 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/6_Giraffe(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf46f542b31b0bc06f1d3241e64a9663d86ad7dd29fa8d8dbe848fa847a34937 +size 81304 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec8212ba584fe818f558c68e0d9bd23504717689 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d521bce953f1b5117cc60a07cc7f0ac6dd41ae37a44ef1db1c55096dc191c2d +size 30387 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3dd7b58abeed27fcb837057dadf1fe2456974bb --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddff84c0348a486d3ace02247da3e8986356c40d6dfe60372826d47ea7d07fe +size 126783 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg b/images/Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c7b4fbc7bfebbfacb8cfd4b3530ebf46cae8be0 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08cc91998fec4272beb576a9d65d08a92cf94d4e6b599135995f72435b0169ed +size 35644 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86372fa9f16d4388234a51c4cb726c6191a33d8a --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402a7f9c8e501e1ffb5cb16a3c765180772f1981b8cc0820ba3926d5d418dd2c +size 15628 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg b/images/Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d4a83c450c504c32879de8d609b4c45ead12402 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0098881d3529a4526598978d8230ed0f684400d47eb78d9acbfd5f1d1fdb76c2 +size 220776 diff --git a/images/Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg b/images/Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90298e7dcad4a543e4843d12c3395cbcc5ba48be --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bb5035f35c3d54501fbf910d43a3c5f4886de31ac315c127e57a6aa616a892 +size 148289 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/1.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3badd913c59d72841175ce3853d66fcf8eecdd0b --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f994ef9af83cbd56c488b4364cf9317042b7a99c120ab13ecbbc479cd2fe4751 +size 66511 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/10.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f478b4e81c0b30a09f0dbdc1e4fbeadd806bc39d --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39068179612cb67e632213c2758a7ce4ce492f71c39b697d4e53a1f1b3d785bb +size 50304 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/11.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3ba42bc1d5f210e838bab7724595492ee930a569 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bbb548ff10519410a3df5cb055b373d0d17c82c86be03de40e1ee45385758da +size 96273 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/12.jpg b/images/Animals_and_Creatures/Giraffe/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6ddc2818d27df36fcfb18460c1a18eb7b3cfc74 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929a0d5d56cf227995482ae125b745a16e6084524978f4e5b37f3260250edc8c +size 26376 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/2.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6e9550778b563ab708bceee5b2b01915bd0dd0bc --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19711687f1d2cebe3fb83cbfeb466602994be1097dad6633af8d85a2a59f03ff +size 19360 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/3.png b/images/Animals_and_Creatures/Giraffe/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..acb101315a8aa7276f968fde903e9b036e342e1a --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0e91176e83ecf58486c9c6e2f134c06a9a897ce386af94fba054d78f598d5c +size 815628 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/4.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..84b9b716edbd0db4e3b34d14d00fef2d5d10df27 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d09eab6f49d7e2f3609cf9fc0e29c4702ac247f6147555f1ffeac66d5f3a6b +size 19805 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/5.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..64dcd81d33b652072aa49a9fef27ecdcf38727d3 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695ddb9c436b606ebddcfccb2866bfc487edb6ff6697c2753bc301777130fc9b +size 53512 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/6.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c997ea66311dc92497a31a50852b452bf87b999d --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082b189784e31298ea3a19c09fe14aaa352042c20822ff2305081a51c66a033e +size 28496 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/7.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9bdd224cb8d5b3832422355af0e36edd649860dd --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37663d92b709e21a5f9d3c394e9376a081199b9965c44b2ea55617be554cc8ec +size 17721 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/8.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a4632781216970e729c88f0ff745580d637fa595 --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319e04e93eb25839908cfd4d1e3a46c63cd5ae949427c9de97b06360e5417dad +size 163472 diff --git a/images/Animals_and_Creatures/Giraffe/Tactile/9.jpeg b/images/Animals_and_Creatures/Giraffe/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..531d89c4dd118a80f458f593e83283b992d8010c --- /dev/null +++ b/images/Animals_and_Creatures/Giraffe/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:921f13f0b06473fc02bb9039d060dc26dfa8fd39abd66a828fb7a1a1ef6010ed +size 54392 diff --git a/images/Animals_and_Creatures/Horse/Natural/10_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/10_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ceade51f87f5288f7252e5c1c7b3a209db1254e8 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/10_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263b48164a4f1fe716660b74157c74e96b1924ac2546ee7909f788b863d8055b +size 44289 diff --git a/images/Animals_and_Creatures/Horse/Natural/11_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/11_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e1e0b96ae557ac71d7f87bdde0a9c6bbd7354db2 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/11_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b082aa0c584ab0a9f1ba2acdeca7b612adcdb718e3aaf8c94879023591072f +size 29335 diff --git a/images/Animals_and_Creatures/Horse/Natural/12_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/12_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..de3545fc06fa59fbb1a05586eafed31849c65ec8 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/12_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6128708c1c0b9c7b93d0b83f4836076cb149853706fd625c03be6ed5c1eead07 +size 86438 diff --git a/images/Animals_and_Creatures/Horse/Natural/13_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/13_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4b208653c6564d4eb8e33465fe32a13cfa0558e2 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/13_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57aba5ebf57149cfbf45ff695871034d4e1da6c0d74834c5fdf20efe20dfe6d5 +size 132510 diff --git a/images/Animals_and_Creatures/Horse/Natural/14_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/14_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0b85c53e25c3286ffef53dba56c1dfe6109265f6 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/14_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5cb39dbf67a2f4bfebd0f9ce3d24c72b9936233cde32a491e19e2a574067e45 +size 45305 diff --git a/images/Animals_and_Creatures/Horse/Natural/15_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/15_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..99dd298788e39e6878b53efece99d62e9500ff70 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/15_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa15dec2db52ed84613c527271508b3028c48e91c1e2c86ce064cc0cad47cba +size 62850 diff --git a/images/Animals_and_Creatures/Horse/Natural/16_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/16_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..83434797e35a77e96efe475c98290bbf9854c572 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/16_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccb4bcc4d6aeb686fcc2b35172cc07d2499cfe30042f1283e36c18d6bf286f8 +size 73766 diff --git a/images/Animals_and_Creatures/Horse/Natural/17_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/17_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..084adba24204c2dfd9a7058da651d2113c8dc199 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/17_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7118a6e59a668b4eddc04d3d857d87eec6a8acba640a478800e8bc9576d960 +size 59013 diff --git a/images/Animals_and_Creatures/Horse/Natural/18_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/18_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7d5f6796a60ff9af985c9e564ee50e97b41eb27d --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/18_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fe710250c3703bedcc9919f1dc638cc334adc5815e9d3d6b288e8abe808514 +size 60517 diff --git a/images/Animals_and_Creatures/Horse/Natural/19_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/19_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c600b660c04b023fb0bc3d964c24435bd28b47b5 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/19_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dae39bc5500ba3366307ea33927f82a2603a453ca73d520977a258d4453d09f +size 281680 diff --git a/images/Animals_and_Creatures/Horse/Natural/1_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/1_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d9000701c0482f1f77bbaf745ef184301c067e1d --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/1_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f487ed65bb8666e4574c51ff2789631d3343cba5a8087f9ad360ed66db4c9c +size 114453 diff --git a/images/Animals_and_Creatures/Horse/Natural/20_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/20_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0b9fd515d68107c4ab0cbcd4606410dc810e2885 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/20_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1fe9797a4b20229b5194515a692ee2461cef60e325d4fa50c6804b27e67b870 +size 283138 diff --git a/images/Animals_and_Creatures/Horse/Natural/21_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/21_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..357b032ffd5de1616fef304ff1dfb790984f011b --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/21_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427d83c21d9d55ed76628ab69362dad51d6c99e478f70128e31bbfdf21b45414 +size 74229 diff --git a/images/Animals_and_Creatures/Horse/Natural/22_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/22_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..51b955920af071d6866f652629904566a619e1c7 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/22_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c259f19385799304d49031d8078a1f2de37b397a3211fc9b2e5dbd643ce85073 +size 74438 diff --git a/images/Animals_and_Creatures/Horse/Natural/23_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/23_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f4a83d50157118e7d6200e8a4928b159208aa04f --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/23_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4664eb6a28ff6a5162d8546039b9834a39497f4ab4deff1919abbd4c0a4cdbde +size 190150 diff --git a/images/Animals_and_Creatures/Horse/Natural/2_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/2_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0100776fce609d61953b4bfcd6e02d74f2d8049c --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/2_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b140db42cff9c1c78022e303479bc9df956fa1b1519e3f5a387be6be8b5474 +size 58377 diff --git a/images/Animals_and_Creatures/Horse/Natural/3_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/3_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..081390e618d9087c15e5f8bef06f1944e2998d16 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/3_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd412d9b1cfd33d90a3519288acb09326e9d1078f4bf63b859518d9c1a4acd3d +size 45412 diff --git a/images/Animals_and_Creatures/Horse/Natural/4__Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/4__Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..06c5dfcc6417e20ba174660bb84e54a4ec95bfb8 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/4__Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5993eacee37a87b3d1f1a9849110dc853538d0600f17e397453d7af612e9732f +size 290502 diff --git a/images/Animals_and_Creatures/Horse/Natural/5_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/5_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bf59badd61fd333ef071cce0eb53a55f402a9e17 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/5_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9ca66f5e8f86da2ef550af584809a9d0dbef7bc6769b183bdaed3db0837c85 +size 126225 diff --git a/images/Animals_and_Creatures/Horse/Natural/6_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/6_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..51b955920af071d6866f652629904566a619e1c7 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/6_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c259f19385799304d49031d8078a1f2de37b397a3211fc9b2e5dbd643ce85073 +size 74438 diff --git a/images/Animals_and_Creatures/Horse/Natural/7_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/7_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3c5a6c92a88cecd6ae3d3ec4d3aa5e7ad106918e --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/7_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac37185ce776adb353450e76785f1f113f2fc5fd503b4ca4d1577914ff0e2ec3 +size 60198 diff --git a/images/Animals_and_Creatures/Horse/Natural/8_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/8_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7d5f6796a60ff9af985c9e564ee50e97b41eb27d --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/8_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fe710250c3703bedcc9919f1dc638cc334adc5815e9d3d6b288e8abe808514 +size 60517 diff --git a/images/Animals_and_Creatures/Horse/Natural/9_Horse.jpeg b/images/Animals_and_Creatures/Horse/Natural/9_Horse.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..eb19c0bcb2dce8ec9e10987ab7414c743e95819e --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Natural/9_Horse.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d40c185416b91aed2f209a3e7620fabda26e25a9b6bdef98ada97744f511d8b +size 156161 diff --git a/images/Animals_and_Creatures/Horse/Tactile/1.jpg b/images/Animals_and_Creatures/Horse/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..360bf71fe5b326594d3f47854fa2370652e17cae --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8beca32d070873c6ab6748c7fd328b631a35ecfa9ed8574846f59e0d3ce81fab +size 49168 diff --git a/images/Animals_and_Creatures/Horse/Tactile/10.jpg b/images/Animals_and_Creatures/Horse/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc111b2abfbd4e69b7139185bbd1c83d2ad22b45 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934238de2a3e727c063e098c6029ca12ba403cfa84f55e99e1f020bc1a9b4701 +size 344432 diff --git a/images/Animals_and_Creatures/Horse/Tactile/11.jpg b/images/Animals_and_Creatures/Horse/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43adf3646c477520ccebab07edde6776ee49bcf1 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c18b7e85cadef246986a9c80f7ac348c73e09fadc8ee8a2ba7291903b9dbdf +size 40630 diff --git a/images/Animals_and_Creatures/Horse/Tactile/12.jpg b/images/Animals_and_Creatures/Horse/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..585d0ee6b8073a928f2e5818360c2b8c9c48c36c --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d41718bda444103b07ae964c554f9321cd3cfde4e3c20264568f50ceb19f103 +size 48198 diff --git a/images/Animals_and_Creatures/Horse/Tactile/13.jpg b/images/Animals_and_Creatures/Horse/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f63812a4ad90609fb265c21d5d7dafb694a756c3 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e273b915b9568f2f71a89d6e29eafe12b54c55dc9b8391f2f33a0864a604bd23 +size 20050 diff --git a/images/Animals_and_Creatures/Horse/Tactile/14.jpg b/images/Animals_and_Creatures/Horse/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69b6dbbd4077c7c806fc512c427f008b76c670c5 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372e4c86e063af1489d0740ef35f3baddd50fcd6ac89031af8fc0ebf14a03286 +size 33489 diff --git a/images/Animals_and_Creatures/Horse/Tactile/15.jpg b/images/Animals_and_Creatures/Horse/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5789ba872299839799700ed60b04b688109f473c --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1fa2a97017662e26b68f35f2d0dd2adfabeebe8a11e94409c556f218b836da +size 30562 diff --git a/images/Animals_and_Creatures/Horse/Tactile/16.jpg b/images/Animals_and_Creatures/Horse/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44e74d2ba4531c8b45f88812763e37717ca8d642 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6feab274ec2d38ecaed3a19156cfc87f09e0c7344bde6ad50624d74681d10666 +size 26601 diff --git a/images/Animals_and_Creatures/Horse/Tactile/17.jpg b/images/Animals_and_Creatures/Horse/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d53555032e127b52c1b532687da951947a7cc277 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a3025abdab7d38179691ab6c0d9295b91497f5141da8d7f9f615bc0bde1648 +size 18498 diff --git a/images/Animals_and_Creatures/Horse/Tactile/18.jpg b/images/Animals_and_Creatures/Horse/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c4c7d675d9d688c5383262ad593174a0c3326d6 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c4ab1316f2308dc4851097edb387dfbc54190d06f6192cb091b80f0f99c422 +size 1991 diff --git a/images/Animals_and_Creatures/Horse/Tactile/19.jpg b/images/Animals_and_Creatures/Horse/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58248d46fdbb75b23c31486976cab71d065c0fa4 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd604e79839a40397742db77a6d05f64eb6deed85483c63bb801ce9295766b6e +size 4940 diff --git a/images/Animals_and_Creatures/Horse/Tactile/2.jpg b/images/Animals_and_Creatures/Horse/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a7dc219f9da2158a2dc65e205cc966d7966a20c --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9fa8509abc7fca889f392cf57912c566fb7466e3af2420d068def176c17ee8 +size 14077 diff --git a/images/Animals_and_Creatures/Horse/Tactile/20.jpg b/images/Animals_and_Creatures/Horse/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2c7868e1886425f9d72f57be031cea8a3317911 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319b16762250ceace3324e16a29c5ef94e2c44511d957e4aa13901883db2843b +size 146610 diff --git a/images/Animals_and_Creatures/Horse/Tactile/21.jpg b/images/Animals_and_Creatures/Horse/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e9019b1532363f6f605275f9e308e81695046ee --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca33a3074ac9242eaf01c87bb9c19a0a7609677f45dafff8da745a969177c93 +size 32214 diff --git a/images/Animals_and_Creatures/Horse/Tactile/22.jpg b/images/Animals_and_Creatures/Horse/Tactile/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0611c449fa40542b1b98450630fb7d62230245b --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76090b6fd41b4eb38ab5316cd12752fb2a2a1811c104b3370623d66e12c560d +size 32083 diff --git a/images/Animals_and_Creatures/Horse/Tactile/23.jpg b/images/Animals_and_Creatures/Horse/Tactile/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..612788df5ebfeccbb1f4e08343c01d834315dc80 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daef0902bf1bd824019cdc92585bbefe05b336cf9515c76b9e962e85e974674a +size 85850 diff --git a/images/Animals_and_Creatures/Horse/Tactile/3.png b/images/Animals_and_Creatures/Horse/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7abf08360073444785f94065317fd8cfed548877 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23a5361265ca81c6fbfcaf2d723fc580f372f07b4c029db7cefb9ecbe3d25db +size 783412 diff --git a/images/Animals_and_Creatures/Horse/Tactile/4.jpg b/images/Animals_and_Creatures/Horse/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4c02cce9cb49ee292b6e4c53c6fb0718c90fc85 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59682fc37080829b46833e12bb9d27ea4bee2b8c99fb2d64132765fd7843ef12 +size 58812 diff --git a/images/Animals_and_Creatures/Horse/Tactile/5.jpg b/images/Animals_and_Creatures/Horse/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c5a2f35f12b40a435d22d93db30949cda90ac28 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf1a14c4f9baa0b6e651f1094b1a1469b191c8c84be65f2bb884bc62b18fce8 +size 161661 diff --git a/images/Animals_and_Creatures/Horse/Tactile/6.jpg b/images/Animals_and_Creatures/Horse/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b06e10777388231e8eb64613c8cee7ad81bdc9e --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6fd6a332d4d75c773649711ba5416e91f6a9b0bd188aebd46dbe44a21c7314 +size 6853 diff --git a/images/Animals_and_Creatures/Horse/Tactile/7.jpg b/images/Animals_and_Creatures/Horse/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2a6f906cf4844208d29e312a7dbc2bfb91998a5 --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252cc1dafbf039c921a25c7fce0fcd264d7938fb588f71b4bcf42eef4e22c5cc +size 25460 diff --git a/images/Animals_and_Creatures/Horse/Tactile/8.jpg b/images/Animals_and_Creatures/Horse/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ea203d25b8bc682ef7452305ae864b70651f7c --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caecbafb51a6edae161dc692b1fdc7a78b7a3813890e433ab84ffd0b5a2e88af +size 10823 diff --git a/images/Animals_and_Creatures/Horse/Tactile/9.jpg b/images/Animals_and_Creatures/Horse/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76d16de2512d7396851537a9dd7da5dd94b0032b --- /dev/null +++ b/images/Animals_and_Creatures/Horse/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9194f9f12577744e5edfdcecffef048a6b6c83cfe12e5be96fdcd6a5d11a5d +size 374646 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/1.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ad4444d3cb96c16001ea5b20f3c6dada2a3d4fd --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d32775940ea387bc6841dc3af8b2ce50dcece83ddf1d538ed360892a3eba4d +size 64608 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/1_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c6d42712b3f108dd21ecb606098797e4aeff61d --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/1_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a74f9f059fae0a05b2f24e8ab1f337e81168dec08b2c55c1bd20d4786692bd +size 13807 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cade0ebc068ef6b38d386008ae4edd251cf59568 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e13d80c1ef038577cf614263eb7cfc205cdac1f8b015806fffeb41e1c5a35ce +size 54990 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/2_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/2_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ddbd8486521b527eb1ac93fac629f668bf130b3 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/2_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732688e8b6b1bb256524159e0938c4c2a7b0af2b083460e5281f8ed49f690f2b +size 17744 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/3.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f902a0b3f0e7fd5359c92eee5162e16ec780d986 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7efa8ec592c2fce93af774b1ea3481ea082c2574b5dad281c39706d92b35bc +size 50129 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/3_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/3_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..649b12d39ae0f5e9ccbaabd6420001053f803671 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/3_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f489bbd7959251c3fc5a9341bfc82e5e09ce899d5a1f871d31dfa3048429af7d +size 29043 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/4.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d74a48c416e094ca8dfb2994042ec9b84588cbaf --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f39916186f3bf31227b4f80b1dcb816927a144b7a9d93bc0232558cf0a9c416 +size 53231 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/4_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/4_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8957a031d85094afceccbb2a1b2b1b2fad560160 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/4_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1223087e7f7ee8c98cab40fc61aa2ac41b7ac43ae99bd86c1770daff2d3c396 +size 24632 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/5.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39bf4b0aef9706f3a90545f83cca918e1efb5fa1 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239f2c0d1c804d1b6616f7c3f373d701f5c037b8329cacc58429ce2d99999e08 +size 49316 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/5_2.png b/images/Animals_and_Creatures/Jellyfish/Natural/5_2.png new file mode 100644 index 0000000000000000000000000000000000000000..671a4ac4b5ca7559e09154036926d9b0fcba366a --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/5_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcdeed512952f2f07a664d67c467d22b8cdd9f69d7e53e278bf57af0bc167c1 +size 646384 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/5_3.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/5_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1729130a6cfc6486488bccfa4eb7ca26ce05c584 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/5_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18412d3979de91fcabcb6973c3bd5e37d4c5d3997a6f1d88b2000f5d19417e6f +size 111544 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/5_4.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/5_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f411d7620588de54e57faec0f415fdeadc0f63ef --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/5_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4130ce699a263707daae67c9dcc0629ab2d4595757a91601f77d4560c6000052 +size 104240 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/6.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0218beaedd9a2b3ad067c31c77c807689b54be5 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936393fe298cf77add6fb3c07f4cd628484f2437ff8767bf7b24307c38cbb0f3 +size 39715 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/6_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/6_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e749f7cb3a657f2b153fce64ecae8842240d171a --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/6_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e862034fa9b7c93e40be9c7fc5700901faf24e2479ba246605d6677f1310723c +size 55366 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/6_3.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/6_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e7b87e48d001f35e0a70a3d85d67b8cafc7699f --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/6_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb598eec7824c6dd7a4ec29c10c9a9fdb5c1c99f9f39476741c152c4e38349c +size 435619 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/6_4.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/6_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d011ec0be404d6b16104abfddd5f3d5a2b04fc96 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/6_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd99b2621002b84f897ed22ddae1c3c9a87d4df8215b0f7db0cd5fcfcf87691 +size 30469 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/7.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c4c28c8f5b9cbeacda1a84456ab1bbc9047f2d5 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eaef2eb548bbb1b76692daa14ca763662ec0969d1f47023195d47e6b1840864 +size 17660 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/7_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab5ce2c6614b03308913c3049341a899bda00732 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/7_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c8e72d9f1052671783c2e5c412b440d978b3d3948cc96b4a25f3050c2d9035 +size 257311 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/7_3.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/7_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12db7dd33eb7dbb6007f3e52d0e87af83a35e6ab --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/7_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e606d3d64a38bcb845819d16ea08c830b74272d835237f3d7a6751c103297ff +size 469642 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/7_4.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/7_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac9e2c4616d930a0ada2cb069847e712fc0eea80 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/7_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddce557c3a3f6c3fb16591224b18ac565c1867ec3efce2eaa1efb1bc5e5f10d +size 30978 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/8.png b/images/Animals_and_Creatures/Jellyfish/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5e01162402a2dcfc6ad4f8b15569828cd340bf29 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61935f29f78eb1a87ff85dc40d7b5d0a3f9f69ee699cb1bd2fe62722d597077e +size 615235 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/8_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ce7f4cc4fd72fe4d457af0b524e8f5b62604fa2 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5096f444865f2e63db3e94213f7327e8ce9f4540395c18b3ee30710aed0e1a60 +size 33795 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/8_3.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/8_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d9cf1b5e43ea8871afef0d259c8a5a75ac36785 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/8_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3ab229dde7a4dac995da3d1801235edca2a7e35e4106a001f8ae494c23620a +size 26334 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/9.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee9a64680c778f8b980f63804d048003987526e9 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e459bff4b63038b8a56e9ff1890259c34d744459169f821082d7d662f729019e +size 23154 diff --git a/images/Animals_and_Creatures/Jellyfish/Natural/9_2.jpg b/images/Animals_and_Creatures/Jellyfish/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e05b2562a090e8a261ac50c13d8a22a5c503d15f --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14231d4651915cf4ba24d0757bc2b15163cf652c80985a22eec3e9b311e9eee +size 48858 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/1.png b/images/Animals_and_Creatures/Jellyfish/Tactile/1.png new file mode 100644 index 0000000000000000000000000000000000000000..60ca2f87f54b39c23715d184b350adbd0133b3f6 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330a03a86e418ddefdbf9ee7043dd77634af008bbecb42550f2caca24b5612c2 +size 1372494 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/2.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de61dc8320b0d25cc416a0de38ea01b2186f069e --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22013c1b8e3875f9d74d4338fd7955fef10fb809fed99abbad4cfdd1d911f94 +size 22198 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/3.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef19aa9fea156caed78699a0cdfcd40d064e9aa1 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0fd5a148f90f0a99723fab3d6b8e845b7fc4cf3e3cb16935812229659e0099 +size 45378 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/4.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..920187ba34014885edb8ba8fad18ef26a0010af8 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1203dfb442c0c9a1777f9e11830248851b968760097890126e5131f3871ddeb +size 66094 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/5.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5855c786f035c5b1f60fa6f1c102cba7fd4c92a6 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d43f86fbc415e69f4036618e39e9260b730d0d0ca1919723333e28a9bca5ca +size 152740 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/6.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cc9e2040872505eda0509267aafcde560477d34 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db88fbdfcc4c47c859b366acc51d28c81ec59422a6cdd2109413e0bda8d0b79c +size 69686 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/7.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d1446ed5832e58c763d608f4e3144c1c6944c66 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185670f7ecb55a522289283fccb1bbd13dcd2ca9d670309d7ec9b8cdca600ace +size 58164 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/8.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff577e7c02d208768edf969e434dfeda0924132e --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14dff94bf2cab33de7b6476c4e916d73c1c604b5441e9840f4497bc34b5d3391 +size 140966 diff --git a/images/Animals_and_Creatures/Jellyfish/Tactile/9.jpg b/images/Animals_and_Creatures/Jellyfish/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f83f362f01eaeb17eab9f86519767dce98c6651 --- /dev/null +++ b/images/Animals_and_Creatures/Jellyfish/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b5d8de0ba4dc438a493cc74f310cbc8d6f27467eab8e9396b158a8f2298254 +size 168597 diff --git a/images/Animals_and_Creatures/Llama/Natural/1.jpg b/images/Animals_and_Creatures/Llama/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47e6eaaf3d402709bc5b784be9ce74b05dde634d --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c042e560be6f748e29a72a711f5f0a04a02ed6e160a04cf33939e6a13579a5ac +size 27675 diff --git a/images/Animals_and_Creatures/Llama/Natural/10.jpg b/images/Animals_and_Creatures/Llama/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1f2ecfe68ddb89f70769e6e47eface9598ab35b --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18296055bd697fead95685bcf20ba17f7413a20d8169b1d2143bfc007d18ef53 +size 1009707 diff --git a/images/Animals_and_Creatures/Llama/Natural/2.jpg b/images/Animals_and_Creatures/Llama/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e89684911032f856671affed1a28d8c2132cba43 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc62c394731cb2f05828d09467417954e163791e93da9a9e0db8b71fddebc99 +size 86488 diff --git a/images/Animals_and_Creatures/Llama/Natural/3.jpg b/images/Animals_and_Creatures/Llama/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b50244225abb0c5222b7a021984cd2f314816440 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d59b704e18818d83f32af29afa8da777931bec3137efd14f0833f7b65b7856 +size 69688 diff --git a/images/Animals_and_Creatures/Llama/Natural/3_2.jpg b/images/Animals_and_Creatures/Llama/Natural/3_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88ec467d4a0488d6392266efe1144d398bdb1913 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/3_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b6e6ef0f5ba2a390a7ddcb9df8a202848b71e660d506b8fe382454c9789c5f +size 82827 diff --git a/images/Animals_and_Creatures/Llama/Natural/4.jpg b/images/Animals_and_Creatures/Llama/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64df881e8212f33e4ef0bb271a4d3bfd364d369a --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c48c1472919d4ce3aacbadbfdff8900e466af17e1cd0ae54d589d9e9d7921e5 +size 28424 diff --git a/images/Animals_and_Creatures/Llama/Natural/4_2.jpg b/images/Animals_and_Creatures/Llama/Natural/4_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65e7ed9ef786a83b5a59f108f459826fa84e53ec --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/4_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccda5f063c7c94518fde0ba9b0f1ee6e0ed1e5fb52aa350ea33fb8c66010caa4 +size 155186 diff --git a/images/Animals_and_Creatures/Llama/Natural/5.jpg b/images/Animals_and_Creatures/Llama/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e89684911032f856671affed1a28d8c2132cba43 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc62c394731cb2f05828d09467417954e163791e93da9a9e0db8b71fddebc99 +size 86488 diff --git a/images/Animals_and_Creatures/Llama/Natural/6.jpg b/images/Animals_and_Creatures/Llama/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c24b028cdaa385b59c064cf7604e5309b1fde1f0 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d55a539a0a9a69d76979ad8b3cda1117968c8890aac7c23c3a1d829ebbc2745 +size 44000 diff --git a/images/Animals_and_Creatures/Llama/Natural/7.jpg b/images/Animals_and_Creatures/Llama/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82d3ffdbc6256861cdb7a9fed98ddaa594aba14e --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71066b0d542c234eb6217ecf87e13ab3ec744307ce302a3fa7a305521d7dcf2b +size 381167 diff --git a/images/Animals_and_Creatures/Llama/Natural/8.jpg b/images/Animals_and_Creatures/Llama/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f594f573c96012f5d2122818c6c7e2bb24b04836 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d0fb52488681d98ea2128c852df0c315d3d2a76078e0b940902b4431faff0a +size 103891 diff --git a/images/Animals_and_Creatures/Llama/Natural/8_2.jpg b/images/Animals_and_Creatures/Llama/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e33e0f55b0b1c343f6e3974fdf4dcaf20f53caf --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e678a03c1cfa5adde5068233971af4822b16683ed1d23ada6b6578178b549df +size 24593 diff --git a/images/Animals_and_Creatures/Llama/Natural/9.jpg b/images/Animals_and_Creatures/Llama/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be5f21ef33b875211b5dcb2b659121dbe0034436 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914ee2f81ad9fd21e4b892d87102b7a6a963fe7d72aae602ae6d0a088c2676b0 +size 566173 diff --git a/images/Animals_and_Creatures/Llama/Natural/test.jpg b/images/Animals_and_Creatures/Llama/Natural/test.jpg new file mode 100644 index 0000000000000000000000000000000000000000..945751e3dd257d9c181d24809ded7d3423876a14 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/test.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ea4b952501a41cde9957f730aae90c5cfc4bff86a0863a228b338ae7e0605b +size 23988 diff --git a/images/Animals_and_Creatures/Llama/Natural/test_2.jpg b/images/Animals_and_Creatures/Llama/Natural/test_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..824fd8b2579aecd42188150410b1e03b260b1c22 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Natural/test_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acebbbe22dd9fb2ad5498a72f747047e7cdb8cf0f12c3f9eebbd86b5cff1d1c2 +size 27600 diff --git a/images/Animals_and_Creatures/Llama/Tactile/1.jpg b/images/Animals_and_Creatures/Llama/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..620f04b3d3f86de9cb9a78b1eeaa2b1d713a21b1 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e973e6bb932df31570a9f8c049e5ef8d7350a95cb53734273556defcb46726a7 +size 7788 diff --git a/images/Animals_and_Creatures/Llama/Tactile/10.jpg b/images/Animals_and_Creatures/Llama/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c330dd5f1894646d28cf3ce4dbbac643c9a65e6 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10bbd0b1378fe5e3db8b6371fa3509e9ce85d404f23788fca09e554d389cdacf +size 15195 diff --git a/images/Animals_and_Creatures/Llama/Tactile/2.png b/images/Animals_and_Creatures/Llama/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bf6c6a4a7a50f94c868a26e687778440c114d5c1 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b5761d45013dd1bcf5fa8c7767516ca2fef80fa11f3a010dc1a742dc277376 +size 142942 diff --git a/images/Animals_and_Creatures/Llama/Tactile/3.jpg b/images/Animals_and_Creatures/Llama/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52dd25d6c308990106338f0d88f0f362dadd6d2e --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18616c86eef885a6f054ddd2705288c642aab68568959bdc9fb8eb501e463421 +size 11158 diff --git a/images/Animals_and_Creatures/Llama/Tactile/4.jpg b/images/Animals_and_Creatures/Llama/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..584e25ded09c592878dd4bbcac22d3aa39ac6cd7 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76b08183134b660f9d7727258121aa38ed27c7193834c14f6db1efdf3d417ef +size 8754 diff --git a/images/Animals_and_Creatures/Llama/Tactile/5.jpg b/images/Animals_and_Creatures/Llama/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05a44c63a975051dee07a53dc488557083906abc --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914730297703bfb4d92d31637d982e6aaeb84080a5498a3d205432e1ec6b1049 +size 7188 diff --git a/images/Animals_and_Creatures/Llama/Tactile/6.jpg b/images/Animals_and_Creatures/Llama/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd820c0fd951676fe1b0e1ffe5bc865885bbf876 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba33ad1277e7d26dec62ab0f66513a82a9b06cc57a403eb92e9334f8650448a +size 8014 diff --git a/images/Animals_and_Creatures/Llama/Tactile/7.jpg b/images/Animals_and_Creatures/Llama/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c3994045dd043026caf77130eccb6123b64431f --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a7d7fd2e449d2e65e8cf2cc87a08dab5a0f71614f917c51381de28606451e3 +size 11143 diff --git a/images/Animals_and_Creatures/Llama/Tactile/8.jpg b/images/Animals_and_Creatures/Llama/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9515bcbaf09614c6ee6a708e3834b8d1fd518c2 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8fa3abc1c37a9d467f2a356256b454a93cde4ff75620d25d4cb0ac84f14e47 +size 12757 diff --git a/images/Animals_and_Creatures/Llama/Tactile/9.jpg b/images/Animals_and_Creatures/Llama/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b8f85e1f02b75c52b3657baefcdfaf46d906843 --- /dev/null +++ b/images/Animals_and_Creatures/Llama/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e7d827b73b2b0ff6ce43cf30acd28a314d925715121e30677d8fcf4f5a3cd8 +size 8628 diff --git a/images/Animals_and_Creatures/Penguin/Natural/1.jpg b/images/Animals_and_Creatures/Penguin/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4844c57acd6184c3fb2828e3eca085a1e2ffd71c --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a236c36f7734d06906f0b5feb40d86edf5ca4abb373d1b04e4f8e1410cea35bf +size 947587 diff --git a/images/Animals_and_Creatures/Penguin/Natural/10.jpg b/images/Animals_and_Creatures/Penguin/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31323301fcb6be161cc6dee0eadedeff40d1a126 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabf36d27081388e031eb460949bfe108002b564a1c2394b4645f07dffd3fa1f +size 15216 diff --git a/images/Animals_and_Creatures/Penguin/Natural/11.jpg b/images/Animals_and_Creatures/Penguin/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3914ff62c17424e33c891f0acd4cc164cf51f88 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2380d44a1fe5a76248be01531d9ca10a04ed20eecd5ccae1f75e0a795551625 +size 338142 diff --git a/images/Animals_and_Creatures/Penguin/Natural/12.jpg b/images/Animals_and_Creatures/Penguin/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9231e514868106a983fc49c28731893b8cb021e1 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740b454e610aebe6ad4146a57c3630b36e12c97903c675479fbfc5fc0dc7c38b +size 867371 diff --git a/images/Animals_and_Creatures/Penguin/Natural/2.jpg b/images/Animals_and_Creatures/Penguin/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1914bf1a2bbaf6ba9ab35e7474393b03ac2c6f6f --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0325b7c6530515c66d20c4c1337f237391b5e97be7f03cf82ec91fe9a41dba77 +size 32392 diff --git a/images/Animals_and_Creatures/Penguin/Natural/3.jpg b/images/Animals_and_Creatures/Penguin/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ece4213cbde154689675880e3ea8e4e1b1d0d974 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b022544a479a95ee74c1b39caf4df958e0bedf93e04e8087f47e05bcfcdebec2 +size 105381 diff --git a/images/Animals_and_Creatures/Penguin/Natural/4.jpg b/images/Animals_and_Creatures/Penguin/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90d3673e95721449002fda0787585ecec1df143c --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41e520e290769ecac63fe89e0b8091e5f9485f6e1cd63da00cd0f86fe9e9651 +size 100877 diff --git a/images/Animals_and_Creatures/Penguin/Natural/5.jpg b/images/Animals_and_Creatures/Penguin/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd2f25ca5292a6d014774568df2bbdc2716bf7c5 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a1162d0b754be0590725cec410f7773d1f3049bf4c1fbaf61dff946d9ef4dc +size 279555 diff --git a/images/Animals_and_Creatures/Penguin/Natural/6.jpg b/images/Animals_and_Creatures/Penguin/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc8d5559c2d0b76fc09f1052459400903991eeb6 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:becde33e9e9b397a1bd6f832c011f54eae766339ba6aa380d6979df88fa197e5 +size 14234 diff --git a/images/Animals_and_Creatures/Penguin/Natural/7.jpg b/images/Animals_and_Creatures/Penguin/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68c722bfb2acc6f4687726ea356c8778cec1bde6 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc889eed6f93fa8c18109e012f5b2f3535f376d3f83febf4a344f47d8071e263 +size 27625 diff --git a/images/Animals_and_Creatures/Penguin/Natural/8.jpg b/images/Animals_and_Creatures/Penguin/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc89348c8a9b4cb8763ed556c30b06fe15077da1 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2afc512eb85bb925cd1a137c6eb65778469f6c2976ea7799a710847486612ab +size 10134 diff --git a/images/Animals_and_Creatures/Penguin/Natural/8_2.jpg b/images/Animals_and_Creatures/Penguin/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c0497c5cf6dec90f99582eb4174f258fb88ca9 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5dd101cab95409108448b4741a3546cd99a95ae1464cf218c16788090de3b6 +size 50498 diff --git a/images/Animals_and_Creatures/Penguin/Natural/9.jpg b/images/Animals_and_Creatures/Penguin/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..696737bfa00b2b9f6d83f6c2bb8d4d60c6397f53 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a6676332e3bf8888c8cf450df6a2eb9b34d34afd9fda3a884dd9ef7c1a6209 +size 16141 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/1.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..283c8c31ca4e2e7030e9a215e9e162390dfdc6dd --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ca922186357b3375cf843063ccbc4c514339c7e230fc6e95a3ebf36b454f55 +size 64890 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/10.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dd4b34f2903f04b45596ca11da3a224456580ed7 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c71aa95500a7384f6e590b74c4517de576903cb20c13cb53f4b250dc9ce516c1 +size 6909 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/11.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8c9e031bcbf3df90ef3db52caad7ec459588d4f4 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47559cd6e9f05cab70182d478ead2888312fd4e177dc81ed52941339e430cf5 +size 24532 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/12.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3cc907f97886e7322c3b5e951527452f565faf3f --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dd19e51b0d9058b4bd47cca45980e97f7e0f9048e6cf08cdb0a6684bf44fe2 +size 28687 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/2.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5a2aa6b799bf99804293dfaa08d654de8c38fdeb --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa14d34dc709cae03d4348ddad1616bfe73a5dc8f062f0ab52d292e57d1b3ada +size 33187 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/3.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..60e05c04b50ce0dd2e946453995f60542a60ff48 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff798e609259f8fb6cc1a167695d9c4fd9cd0033af366c7a90ca73300143f7f +size 22010 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/4.png b/images/Animals_and_Creatures/Penguin/Tactile/4.png new file mode 100644 index 0000000000000000000000000000000000000000..02d30612ab281387052cdd7317d5db57909e189c --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb03c263b6303a76a8a419d69dbbbcb8493be0aeaa3ad99ec3fbdbfb0841f196 +size 569091 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/5.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3a15ba8429e6abcd08929a706fb4eacb7e66e83a --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5336881817f24bd7b839d201f60352c69891e99227d6ab1179b2e0d4b2d8209 +size 9151 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/6.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7256df2d08c591f34eebe4c8baa672ffba09c690 --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718173a97455f2e133500a2b6151f1be24f0f912f6ffb5234d4fcf3e86cef51d +size 23569 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/7.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..abee000e0895f9bf0d605d1f6cd0fdf9e68fb3ec --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31168b7030cd2926fcc2026dccd06b4991797164c2cf44ee2b459a5b6f0992d2 +size 33277 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/8.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8778152e190954be33d758d9a588e8e3bfc0aa7a --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb5b0656fd08a96fd8522d47ef97ad8233959fc31bd51bb44a9f8e1f5e35bf0 +size 39121 diff --git a/images/Animals_and_Creatures/Penguin/Tactile/9.jpeg b/images/Animals_and_Creatures/Penguin/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..556a4cfb4c2fd53cac38edf69961564218575d7a --- /dev/null +++ b/images/Animals_and_Creatures/Penguin/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687a75b52af9d06b1116e912e72a1624880acde920dcd157f7ddc076eeda9a42 +size 9946 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/1.png b/images/Animals_and_Creatures/Rabbit/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..620ffa6d543fc7080c58eb148f713da0fad33aea --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bac98607a69dcf86e74664ba618ef793618ae3ad68490aa6e136ad2ef2ec601 +size 225959 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/10.png b/images/Animals_and_Creatures/Rabbit/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3811764fe22b4b014cd2ad3384d0fc67027f6253 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4aa620d440a31aeb8086b8ceb543747574418264df0f3fdb25b6fed2e289c1c +size 216326 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/2.png b/images/Animals_and_Creatures/Rabbit/Natural/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f85ec1a1c2435752f707012271b149bbb591385 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9fd773285b9b07cb3d3c0a6744ba1011ad0236d83c921505513f70edf37235 +size 227873 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/3.png b/images/Animals_and_Creatures/Rabbit/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c0c4ffd60c9e4233eada8fa9829d667d865d3066 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092adaf8c659d9a34848bfbd2b707bf37accef8c27580deea1285519d198c914 +size 272220 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/4.png b/images/Animals_and_Creatures/Rabbit/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab084774473aef0469ce3b5a2fe13aad429a699 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30231c8a37d50d435bf95424ace5efdb13f3d5afc04387a280c1e2266da85568 +size 201259 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/5.png b/images/Animals_and_Creatures/Rabbit/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f926348eeb690f18506dbdc32c3850e7db5ca986 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5ac7febdc63e8d949ec9643a4e5986d5a02a456ed2bd0f1d172d01ef35c86f +size 271490 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/6.png b/images/Animals_and_Creatures/Rabbit/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a4fb2f377442f08f85872450e909144cd4bd28bf --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cbe6c33d9778254fe369570a0d0a4ad5f01249814f3062dbcd4efe5452dae4 +size 78261 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/7.png b/images/Animals_and_Creatures/Rabbit/Natural/7.png new file mode 100644 index 0000000000000000000000000000000000000000..52be024f68cae6cd560575b960f93e755fad9700 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c39bbe33f853515b61e0919f790cf0efa54c33ece0c2f8783ca90f117ebb19a +size 280415 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/8.png b/images/Animals_and_Creatures/Rabbit/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4438776ad9dd1ac7de508f9cc4bfcd14e9e7aff5 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ff69edbbaf5924e77de8968755f9597b95fc1405ad24f181667edfa9832df1 +size 459267 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/9.png b/images/Animals_and_Creatures/Rabbit/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..67fa7b585d47ba6228eb72a4e7f948578b1d0251 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d432ad03f8924622359acdb8ec82fec7c5dca99ea2af408efb4f2990ddc62d +size 434472 diff --git a/images/Animals_and_Creatures/Rabbit/Natural/extra.png b/images/Animals_and_Creatures/Rabbit/Natural/extra.png new file mode 100644 index 0000000000000000000000000000000000000000..6b562d076992a0ce7a6041fd7063ebe02d922370 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Natural/extra.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be6d12553248ebc8fe2cbc813b8710246b45141222417a33862463625f4ff8c +size 178533 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/1.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2008429e722fa546ca879610c05ccbbbcf8c70cf --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877dae4bb04fcc99fced5da950517bc9b7b45583f8280ce155835ffd62e5da78 +size 11921 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/10.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d64c5cfc2d48f09907b0dd3bcc159a8b1061ff39 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d1d2d1faf64f12775e58ec4443c136a79dff0fcfc2fabfaec9b443adeedb32 +size 27805 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/2.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86e12f86f98b0efdeca3c487de963f5dc3881980 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ec4c8ba415c198b1baff049d1f91dfc17e6a306a5c762e6729e722da9aace0 +size 62004 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/3.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c83bdee6fb1a7ee32869f2737d962482e927749 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1caa6d681205a884354dd1747777e4b08bd69bd22c6090dea3195e697a72d94d +size 15907 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/4.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ade5a040ec1c2467efa36242b3d525ab5b134844 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b6ea980830175570a078301f4ec91226c0831e93327e262b7b26c7b564d248 +size 28404 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/5.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46afe6b43f876d0e9aa9c60a2b9b6d26ac8fc4ff --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15f3f91573aa6fe8a5e9470edbaf4a2b8af242e8aca1e282bf41bc52f7d331a +size 13966 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/6.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6de6a741dd8fef2ac0cebbe7ba5c63b61b8b4dc --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c1262b5518bf8a911fe93062f958b1cc9d7081a1f9cebd637e6f24a424b59e +size 47771 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/7.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52135536907afbdfe14838955c12f0f6195eb1ec --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c785b51799ce7c033509fae5d08ceacf0cab36a81284e83b8f6de92a5f4a025 +size 19852 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/8.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f6e13862636e29b19516d5d44fbd2f0646391a4 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4c512b5edd52cb6594e0fd53da977bb49aebdccf5e91911233937056b073a4 +size 25411 diff --git a/images/Animals_and_Creatures/Rabbit/Tactile/9.jpg b/images/Animals_and_Creatures/Rabbit/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a34600d55f338d98746ec592de3dcd500f5bd5c8 --- /dev/null +++ b/images/Animals_and_Creatures/Rabbit/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1fb3f01ee34e5923b5aded11116a87e4325ed65b4016a032dad19f8da254d1 +size 131073 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/1.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e7e38d7c3c5887b2f6bfa56811d707359f7a471 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d0e7aeeb9b30348020e988c6b42ddf4027c5a5ad1efe9d5e50885795816570 +size 37063 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/10.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e7e2d535e1115fd08ffc00929ddb18ff637828c --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37247cf5500637735f8a949e904e416fcf2be492a5c56269ba524c23d44c7fe +size 40019 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/11.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d6d78c87ada95008eccc6454964d42e92a74ff7 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe197a0841595fef69ec7564483cf8c4b46388211034a3493cea9498fa99da5 +size 24972 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/12.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69be347bf1ff02d97bf222ec10a0b07e5f871494 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42314ce8f687d665da1ec4415dc0a30dcf5d1611ba8b1f39444899b259c9647c +size 90783 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/12_2.png b/images/Animals_and_Creatures/Teddy Bear/Natural/12_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b2b08c42bdecfcd43bad9089628f2442112ba1b2 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/12_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffbf516c62b4a3a508fb12e791c9681c615f617f11bac43539de21f9d9aa03f +size 565173 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/13.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6945484470f0ea209ba4ae54d4342c1f04d005f8 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53fd8e2ba13a7d76f00d4b8307dcedaa72937edc3fcf1b5aa9950ac52a0ed37 +size 1334334 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/13_2.png b/images/Animals_and_Creatures/Teddy Bear/Natural/13_2.png new file mode 100644 index 0000000000000000000000000000000000000000..f9121acdad205dfcddd125806714a0a5620f3f9d --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/13_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210b8bae5d832006741d46984592af7fcdd20128fff5eb059a50f3c43f7a7dbe +size 642038 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/14.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44b127f76165b8930e6d6b2119db6f15a98d6c73 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02b1d840d76a128b5bbc97ea667537f21f683c13f16617ffa98c773b1e472f0 +size 4322 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/15.png b/images/Animals_and_Creatures/Teddy Bear/Natural/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1a25bfa316d6812293299717ef43afaf13d80e --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3057ad5a96c163ca4d283d07004c57394694ac6c5f1de1894384678d63ca0d4 +size 199689 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/16.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbe9f8f3376250f12f43eb1a2bf4e1842f552261 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d22c1f34835f762ef9c5e61044d7e4062bb768ca2b5d76cbd392bdbbd73d809 +size 90160 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/2.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0990b28cb960218e5cb5d1e910f77838a8ed4960 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5dd968248ef2ef1023a91ba5a6f7d043e87cca97f80fe67c0668ffae8fc1b2 +size 339023 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/3.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2292495fca809b117cbe75522f1bf2c6f2dbe34 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd3fdb9934370aca5993125db9102bcd148d84a77c547176dfc9d9a707257cf +size 20001 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/4.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..816861715aa9266e9d7b3ccd14868ad3b1db2840 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31af7aea475be97436609ec5ba77b574875da7b9e9af0997e268a1ca4ebcbfb9 +size 20958 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/4_2.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/4_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccfec981de160abf7eef86d1c2abf1238f255a0a --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/4_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75eb23266a049282074ccbf62878ba00fa1ddb14834876086a667bf1335d9c0 +size 25739 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/5.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a2761d678725f0b35c8196282b716343418c999 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0f3296ec6b4be69662cfbcb3ace309ad96c6f1fc915d2e9c9574db45d2915d +size 180616 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/6.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a17f7d50f2a5f80804f2cd1142eb33a9674595 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531972f3366068bbc8e9b683411471ea59b64f660a2fc180772ffb21506a9bba +size 147404 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/7.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef15edd22e862273b15d29416b754a3501f1f150 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905af62310373b1a036084704846a897db5048f0c3211cab3ddcd88f605fa963 +size 435815 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/8.png b/images/Animals_and_Creatures/Teddy Bear/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dff0798c35159104e3ea861b5a7c2284958aec68 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1411e59e0a3f874081a68245022e60a37d55ca3406bc20f42e6e5c1b0c879b33 +size 727040 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/8_2.png b/images/Animals_and_Creatures/Teddy Bear/Natural/8_2.png new file mode 100644 index 0000000000000000000000000000000000000000..98dfaddf619e1c88d307dea19f1c0fe28feb30b5 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/8_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa9714570eecb228d79f7a9c862afc77b3e720c1d886922dceda8101061c39a +size 367882 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/9.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23e8fe229e1b41e77b32c32a75cf915b6bd6564f --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9208f072ba8afbff9852f7ea0b2926c22569cb57b9e15e6a3bdb520c4d7c6e9b +size 1082202 diff --git a/images/Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg b/images/Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4a4a14ac267813d486f92cc7af63c119f0aff96 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb17a98afc01d91ffec180ce9fe9fd99e400d736cabe05ca745e95d218c1463 +size 84280 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..edcae00dedbaf0629d90f33f9e3a4ec1d9f95f72 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f54517fe715b83ff227c5f0ad626ecd1001c1c4b388d59c71e7d4594c47840 +size 28189 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..26507b2bfd3bc3befe81b3df09a7d07ca99118ac --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3235206a9dfa348bdf1d180a675502a67c9f87f5d0912d5a745c2ca815907891 +size 20163 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d9e52f5705595f4f7f19d70d0a7e1bdbb896d4aa --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2eb0889f48a1cc463cc39fb73b12b8c2f3a0c3988b80456f089f1e9e268913 +size 36632 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..656424dd699150b5a31c54570b979b7fa40c2fe0 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c378db69f8406ad66c4c1ac30c8024ec1421b8b15caed655c1a102abb964d915 +size 61596 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..893cace673e9971a0b8e1f657fc4be5afb84bbbc --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:127bd97747d8d3fb32be3a7a73ac02a755248c3a6ed1b1cd6ee1b67f83c62ab4 +size 31567 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..fc3392129582ec4d75d3a975f0e4f4a4cf1fdbd0 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed18e5cbc2762fa3d79bb4ba23abc330720cdd76f5530939f22df95b286d15fa +size 27902 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..827ad3e1c2ab42c173e3a3469d0819ca26e0131e --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ef0f2d89592c1222cd9e32c86fff9ea02facb06db357f96a00350e184867f3 +size 50876 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/16.png b/images/Animals_and_Creatures/Teddy Bear/Tactile/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c1115d22723082841dafa30eb166f5208c642ffb --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474de625c978f014ea4ad626a3e69ea840dcd226ec17264267a5940c6dcbb9ad +size 1553986 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f0bbb4e0a9a1bb8a5692c389104777742ee57929 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585cbc0b716acfb4fe9066732b2800ddf1c187c922edd628ffcafaf0765ae7ba +size 103256 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8676d6f9a8d6c686c32773674becadb6f8bf2403 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062324bbebe4356f8f9e432b2a2f162daae9b39a6b240cdefab8362e2e0af799 +size 27760 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/4.jpg b/images/Animals_and_Creatures/Teddy Bear/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cb7f81ff7a7890d3fd00058f5e1f8ef83a5a548 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b199e31abe8b835fccee9566e8313cab45e1e727f2bd08f80114e485ab7ad00 +size 20370 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/5.jpg b/images/Animals_and_Creatures/Teddy Bear/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be2673c865b1302327e733105c1793adb27b03cf --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e06b9f55fbe8a91fe1cffef7249cc45c4dc87238a6a3a6a60ac7694c33f2f87 +size 34596 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..91e904de2c2e9390ebacec57be96aa3895004465 --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db18e95af26993e718fb302f2bb2854ce65c2002b18e4076136aa1452a0e4c14 +size 51543 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..201f1813b3dc73683245d77a650f661f6305698e --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085d744bacbe3b5fffad306028aca4969e035f9cc8f16a8cfa118d05fa15179c +size 28925 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b0be7b0e76cdacd70bd8ed6409363f6d7a35d1bc --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106eccc8e23c7ecef3bad88f0cd6bccff32b9cad2df96626a0cf32bd2bb2d6ea +size 43679 diff --git a/images/Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg b/images/Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a956ef26b2fcaa9eaf8b897a3df7b3516e6220fb --- /dev/null +++ b/images/Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1942771043bc650a4cd0bdd58b5bf27a80fc94982bbf28c4366d45460b9b792 +size 76878 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99d75ce9d3d23831a7646cac01b9cda6a94574ec --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2058916ca0bbc3d0bb0de8f169d37383eb94e44e3fa3b50d9b0487c5bb39365d +size 90841 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..393a29c715df6ebba1d9693eccce2523aee6c759 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1d9a285cf4dbab2db075741f436fcd745d57bdd4a56354c67ab4ec6c06d529 +size 29554 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/10_2.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/10_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1590716a6295c6201b638ce0072f8dc27ad286a1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/10_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de45d2ad543e2773bb556073c577c6c0464adee33aa12ae3ca200401c7dd96d +size 22990 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f8686ab4fb56ca5fbaa3249f2145f0f80a6969e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5397153bfc9d9b548dcab0bf5d767aede28cece587d9e6053595e7355ef64b +size 154331 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daa21d42254692445fd16e48fd583db1e871192c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b45d84527923d25545a18652ac11525d6bb0a7c7675da8fc4dca17aae5c42a +size 18226 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..927fb180281b92a8395a6eb0c8172d07aea4df43 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221aa17b934ed726bef4db2f4e0df069ae41781ad62730f21a114c4d249a525b +size 43093 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4589ca1843d48a37ece2bfe40e540060b8766570 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8b053b1a9bbf6566b4dce84941d81b93eda4fbf1f62814991e976454d6f8a3 +size 159895 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d4f7036504549c39a1bc90e9d164dbe30e13805 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c85a4ae6a4d1aff669a1bc0fa918111738283212e99d3e5c297d7f7fe200c7 +size 43130 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/5_2.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2937563ac13f5113a7e95afd079cb238ec467f9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/5_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c67c7ad3737dd80572f4ac1264f2e8eea581b20956064ae9c4bbaa9d9b7216a +size 27265 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9d1abaad4ecbe1368ac5964f104af7da3851450 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5589f23fa2b10043ef9cfcb996efb3287fab3010266311d27109892269924f42 +size 19743 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3a9ef5c4c11134bb5893abdd8c9fac4b82fb989 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18230658509e02ac88ffd8235fb4c9110c09f26ee1f8f71ffa8222302ddf2e4f +size 22085 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3e5470a81c2cfeb89dbc994d233427ed6204b1b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd10f0339f308c272ad9040fde0a788e2d3fceea4d212a3d5f22f845f24189cd +size 11723 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51bbf2533290125e0eb6853202bbbef65304fa4d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996844500fe1a5aa927bc58a890605e2e2201807101117ddbcae347edec3240e +size 1052728 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99017aa3e94c4930d2dbb8873a3028bf7bc06490 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7d169ba8349d9e5b1e3c09ba4908b5535c7c7cd61342af7b5f3c4ed2e15d07 +size 82879 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..019d044ef4ac364a8f60cfcfc8a7b1d545557a43 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a02643695189cf9b79edd52f1ca0dfdd45c3b95e9d2868f687bc3957b121cac +size 28075 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56b7b79aba688d2a9d09f306d81354390411a0f2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd208fa88fe04638c775b87d8d2f0dc5649df28137135ed0771eb03629a396f +size 8757 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c622e145d72d73c9fffac7a3a6359e09a59b8a2d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d019690494bca78d554110179b4c5c2cee3caa5fcfcc725a8cc97e3e7fb38d7 +size 15184 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e00b9776e93fb99c3ed34ce7c798ee7cbdeb29c5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f804cad1e0e8de3ed9030933afe1c1ba2ba8198e2feedf042c821cd510b2c4 +size 30189 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d060af66b106a9ba643ee150ded844ba2c728367 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef06d2f475c43489ba4db3a1cc9280d9a489aad7cbc24badd1c82bb77e89ea9c +size 54716 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9824c23b09734f8672629c0f83a5e3bbefa1c602 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:759ce55ece9f27d9ed34fadf9bc9e97911f7d57d3ccff8d76943153038faeee7 +size 24522 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfeba48f8ab6e2bd743697633d5f672d366d1026 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abb285a39dde755b7d57f74c12d85e87777dae49d69cdec5f351438e93b2024 +size 30281 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37e7da127d8fa981685bdffcf24f672a1a47bf97 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a72834ff0ce1bb61498719cfd33ac86925277598c341211b2e4d5b78b6dcd25 +size 29413 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/8.png b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/8.png new file mode 100644 index 0000000000000000000000000000000000000000..12eca2feecc257bf3598351953cf10b200b765e9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b38e8205b1de84def9fd64073ee03f84ffa109af9b8cb1866a33abf51118d32 +size 1569135 diff --git a/images/Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b0d4bf01f46da9ef89568996c2df3b2134a4c8a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9b650d21dc5786eafc1ab835402baf22ee9a8b5b04b15ce943747d6967545f +size 56101 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/1.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..17a05d354f6783337587d590ebe1e94f7cd5984b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd395774c49a2f989679599e4db8f88204687c378d51d5edd8a339b7cb36eeb +size 382886 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/10.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..58bd30488a7a806b758766093b8e727476500738 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68591aa1dd0e52f0935c9ebfea849241454130bef9af457cb2134199551e8262 +size 416747 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/11.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1b89c4d7939e2b8890494155403de2b703401b79 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd2c06ec952e1c622bf9ffbdb1e4a53933e746f0aaa3f71faf94c5b3596f3fce +size 172576 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..31bef696ef97b269e6754af50370a3fbab2a7da2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67833a333c2c901596778997b494656bebe47719535d560ea0fa6b75b5ea6897 +size 120131 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/13.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/13.png new file mode 100644 index 0000000000000000000000000000000000000000..11b73bcb214633bd47cb72f9e81a268507181272 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a752a52afbda4a77d1f55a94338116d2960d65b33aa69287a81529e3b3136a6 +size 731507 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/14.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/14.png new file mode 100644 index 0000000000000000000000000000000000000000..58a0abda27acdb05a6c09832b1c7735e1631c331 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93756151807042cb840b1417a230daffc75f602d40783c68b09699cf24466f4c +size 316139 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/15.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e0ba96f232752b2115849afee2fdddc0cfc54a73 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a069b6ecb5aced57257e9215d7c831492a572ce07d3af63e795aa0ff3671dc +size 551105 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/16.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c932512ab5cd06eda77e85f0d7c626ba66534374 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0829baf08cf6afe83743a648dd70e03a5824a0ce9ff2c1defbfe3b7002c0a6 +size 170946 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/17.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/17.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2583378fab0e013a56aea20934f7e2ecbaf6f3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b008ba91becf872547298f0ba95bf086460c4c7ed1bd058b7e736700abb224 +size 159144 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/18.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9fed663d29fe3c5d0c84a3d57f71710427f13d35 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133fa44df07bb862436b78ffe5480e9f7621742fea3d09f3ad8ea871befda992 +size 55718 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afd6a24cf9b8243d7709b869558080e3c235c499 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca965f1654aae69bcebcdf99a634c086e0e394a8e0c46d46f4b1876379b86c7 +size 47012 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b868e59957630fd629f2773c05ae4f580cd21d9d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d329e75614c01da2a31d8146505139dad758342382e5189d0ad597ae7b25785e +size 13808 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/20.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/20.png new file mode 100644 index 0000000000000000000000000000000000000000..58bd30488a7a806b758766093b8e727476500738 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68591aa1dd0e52f0935c9ebfea849241454130bef9af457cb2134199551e8262 +size 416747 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0e81620740d009283938bfb85dd8177bbca239a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd8f3e8bf8326b79a9d39d22fbae1ce8ac79151455e25aee2096624501921f3 +size 84015 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6ad75fee77bad40abb8f7e24a6755f0ac70cbc4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9f9865b387a42680a709005204016cdc1e9d7d7abe76190353c1f0be0f814e +size 1118750 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11b73bcb214633bd47cb72f9e81a268507181272 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a752a52afbda4a77d1f55a94338116d2960d65b33aa69287a81529e3b3136a6 +size 731507 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11b73bcb214633bd47cb72f9e81a268507181272 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a752a52afbda4a77d1f55a94338116d2960d65b33aa69287a81529e3b3136a6 +size 731507 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11b73bcb214633bd47cb72f9e81a268507181272 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a752a52afbda4a77d1f55a94338116d2960d65b33aa69287a81529e3b3136a6 +size 731507 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg b/images/Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0da76fa3fd228a1eae774bdfd286db8e2fae26a1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872b4fe7f6c291475fdf9393d950fbd6b0d16b3bf4eb4a6cb9f8c63841048bfe +size 50427 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/4.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8f39ad9cb8222b552c4a7875c244f282ababb8ac --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11613e8e46dd356f37691da95ce67ec80be8431299c782100f1cebebcd79bd6e +size 336007 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/5.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..58a0abda27acdb05a6c09832b1c7735e1631c331 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93756151807042cb840b1417a230daffc75f602d40783c68b09699cf24466f4c +size 316139 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/6.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..33687e86741d9f834e16f6327040edecd6599a43 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73fda3d573dea2b88da493ac1f943eeca70741e6ab706c5635cd389228e1c38 +size 181013 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/7.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/7.png new file mode 100644 index 0000000000000000000000000000000000000000..26794e3190d1cf41875a51875c70dd834e8a4ee9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b771eca8fff8ff0bb7dc98c5294e6b09c646cfdac1cfefbe60ebf97f5af1731 +size 882009 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/8.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c932512ab5cd06eda77e85f0d7c626ba66534374 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0829baf08cf6afe83743a648dd70e03a5824a0ce9ff2c1defbfe3b7002c0a6 +size 170946 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Natural/9.png b/images/Food_Nature_and_Simple_Objects/Ball/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cffd7c353792e4734f7dc6b992694728af4d80cf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d0276fb68861da47d3fc1649b9857af09320ebe9868e7a0900eb561c644d5f4 +size 282855 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dc052201769bc4b7d874b22717bdc9c387c0832 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a082ac39a61c697fae510cab822cfd94a01364c1bb173db04d9e88bb03e934c +size 279420 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d07fbd279d0dd3429ab133465cac4b6e48401655 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481d4f52768eadf10b392bf22be13bf6ce4c3a706854b17832057bea520a33aa +size 279684 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0589e30628ce2c29997d02d67c332583b110fc98 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6fc9d2bf4e6affa96501d929a0e706a669d87828c5ae561675498c17d0111a +size 26327 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bde928fada61f0c990c76ef8dfd38e2dace7addf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a38ecbb73afdbee83201166b7bd163cfc9f8b302f712e85641a1a6818e0895 +size 26922 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40373dc5df03a1e9417ccf55baebf6ade38b8954 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667725d3aef3618fea35e116e762446b63b73b90e73ca99f8d9e75f5e5ab6161 +size 22690 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e19e2ad546caf7d329f6e742547713d0d06169b2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11808573eae05788ab6968e2e1f98a90c8254c66f3dd9d5aee7abc3b4e897488 +size 7610 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13e54d41499be7da8354df12dd4b4a0e721ac62b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df277b19c8a1585b65500ebe83edcca221ab9392f2c62540d45cb95fa13dab6 +size 32837 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..450a77f37ac4eb223613a06ed219e416c81ec321 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a70611b3af73675424dce236d37a5d54e67b519b66bd76d9dc060038fad9ad +size 30575 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3de3ae296c813d7400dff8885419559d66f2c953 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0119caeb73879239373116b6279b38c955ce410d97d3633670eaf0f24c1624e +size 22895 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc0661ad50746c8db4d51b7707612dc4b67a5077 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75fbb7915753ccc3beba02ad903cd25eb1b811d52e401f7e541e8098fda92137 +size 15759 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20acd917c0fb0b4bc7ea551636162428a0a159bd --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1550821af4006116ef2bf46ed08c82ad64873b841d7af9146455043efeec6a3c +size 25130 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0baa64b472b09338234c38630efc3028df514da8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae902616a07a2c9b9386a6833e859dfab2e5527f04eca68ca5778df2f4a20f6 +size 353466 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff47deadf2e410b755bd04c754d34173879961a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50bd01b78ef6910bc5ec3b9c89c67abf42f3d4ba08aba6f1f0b4f7953a16476 +size 21100 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac91ba64c78ab8f6131795031d3133acf76e7f7c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24eb4e1120f66d6b2897444b215f4626e6867d0ba980c4afa84983987b3caa3 +size 23704 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..024d52c70016d56f5dd46a5cc52d845665fc4689 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a529a73aa708eb869b3032a299364532a9be57f4db5c74570fb23d0c9bcd14da +size 20953 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d9208707f97c109ca9c02d8586f603ce5fa9234 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a432e23c7b6521d84a52167e8e4a9f25f7e75602b519ab16ebf69932658f4a +size 24526 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f36b1a2d173cc1f1a5a247d13da4cfc5415a6f9b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892772d56bd82332cadbc494c6d762132dff4dabcdd73cb6b80918f66f3c3802 +size 24923 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f664fbf11baac4bebe102d90b702b917f94adbc5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccb46ef3284726b7ba230c94830c66951fc2c28a6171efc2df51c41bc4c51ac +size 24569 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7eb8684b3968f19d5add624ed8e3a9d7a2d381a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bca830f8c777d78e8f363c182a4e091b3ecc81209fea34a2ddccc5e33c17c3 +size 207958 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b27317827e33740af0a082ee6a3fe1a506ad3c2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71858ae7ff3e73cdd2156cc7f4c9ef9ec6a2e77ff5e7328b4b6906c1a0319dc7 +size 493465 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f940ddbaca9c1736f943310964b12340260b0ed --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb9df9df79e281b90e50458ecfba292af4f271ea796b54aa3f5ca0e98760dfb +size 194674 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..171147f0e2f2fd427481c77338ff2a85cfd4c014 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce7cc44d485501b0134e0f6abcc11c0a5379734a07539be5840d71ab59e8a45 +size 275880 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb2e4d847e37fba378745fab2829edd50085ad37 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f716afa1b9fc2c15f85fd635066a3d4a227122dd76563810f931636368527a59 +size 245305 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34f20bb153b4b1576146e4fbb3a14775d0371bf2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c32b6b667af7c0ea2eca157e9dfa6d1b18dca39106e1ce896ab62c462eb730 +size 158457 diff --git a/images/Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcf33584fbd3099024bcb96e58f9984689026630 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba09bf545b0cea838af837ad80796ff4abb056353159a5ed9c8f769984c5d1d +size 157622 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..680d5422b3aa5c773e89931c2f5801f349248a31 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4bae9a4f6d9b103f985bcb8758e718df9e83d5f07794de8a4711e3025f4248 +size 11933 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2595f5dbaefa1cc730e806efdb44cc430dafb622 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99fb5d47027eaca707d47a01eabb8cbd5ba345cfc4edfb93e688e52e6fdbbe3 +size 19952 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9085ca1aadeca6ac09d13ab941480db7994ce1c9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c747c13f5b8ccd633b182bc299eeb7e2f578094ef90e553126e71d9bd6ebc3 +size 490006 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e41227003caf888f85b3c677ea751b0a38dbb0d5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79cdaa28ca96858f72912ff23f8a6f6be3b97777c9936b77a1ad6a51e5064f8 +size 40019 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee19608846f0794d08a3a1975f40692070f48cb4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2be606379de3413b3d3c73d6a671ccc47fe7d104a1fddf275f740593ad6c25 +size 19726 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2595f5dbaefa1cc730e806efdb44cc430dafb622 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99fb5d47027eaca707d47a01eabb8cbd5ba345cfc4edfb93e688e52e6fdbbe3 +size 19952 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f5aedddf30b3b2aed19673d280ebb0588782b99 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2aacdef27b4867df5559127932cc2116b8dd4b68578e5cc46a7ef4701133015 +size 12520 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c0ab8bb70d1306981f452852ff79586e9850da19 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c95cc671016d399e58b8bcb24d1bf4bcfc31189964a76cdf20522f463b00b68 +size 71131 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7291794c6fc5c25623f5d4311974609cfea78d56 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015625692d14b50a2a4b253524be000cde26bf136e6c18f0e653e86e14375a1f +size 3107 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57b3a94c511ce69a30f9b314062e79e4cfc1e598 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748e491ae49bd87e84f1ec595ebc3dcaf6a58a8eb1b67bf2a5b46e89ac64c7cf +size 75805 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..576c56eceaa4561edbe6170ae7b4fdf9be56a804 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d292d5cad2fd5d5bf181f566d76d9abf790888ccce168734195efe2466f7f512 +size 81723 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f5aedddf30b3b2aed19673d280ebb0588782b99 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2aacdef27b4867df5559127932cc2116b8dd4b68578e5cc46a7ef4701133015 +size 12520 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg b/images/Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..64f0a8d79726fb1cde6a4ca6b39eab6a9a1cfbde --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1095a47f7934f325d297c3aa778bb0742b875e305b8c188e124dfee19304aa92 +size 4344 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/1.png b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/1.png new file mode 100644 index 0000000000000000000000000000000000000000..18812e7791aabe1d6d231bb6b8ff565e2dbe8fc1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a4ad9f0ce66501b4dc299d4f4970430de493d9691f73036b137ef78b612a40 +size 4932 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/10.png b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d717e2cfe19ba1345363435bcfe0e74a1ce57c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd198cf6e09ee0c6825591862cc24f31773e6da1288e358106de52f3c6b353c +size 200017 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1de0c49b5bef61d547fd6a946608b407ef71ea0c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591fbc50e8996146a51532bb88e9b3a9f7cda4337b9fdc7597e31b59b2066d91 +size 33322 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27bb5b08f13ab0dd4ded43a43eb1d53c89ce8a00 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2c40a8b5d551af39e42e4e802a91f4a05848f27ad128d8467491b347478dd1 +size 16295 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26f6d39c914f564fe887f571f024337301d39dc9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ba21a32e8b546680b904f5e9e50e070347148301be2c9ca89b4c659fac25fb +size 7642 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/2.png b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fd50032f40c8f26131e5386d69a4e8a6746e871d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b1f348c5d040cfa2cfc258900d19247121df12ac8a38fe85017b9fb9094685 +size 1143191 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2b337463a1988a656b78818708453ae63bb522e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f94adcb77ce94e31b96a415d95b776b6d4f8a13d2478588a22355b0a7f8d8f +size 56389 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e58c6f80912851b04fe58f86f9d4529acb51bd7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396a434179de75a1cea9b87aba9105895e2cd55e978e50fef51c592dd80120c5 +size 29625 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa87d496f8851548ed816e9da6b5bfb5c3898498 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a86c8c0da4474e169d516d321ac28eb91d9934f8836d3e9945a1b0ac61ad6d +size 43714 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ec30712e2570c3236346b40f53116202be7a15a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f26997ce72caa795261494dbf230b8b0dfd80707a967a6d2687806892bbd9e +size 3346 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95db8df9c9099efa0560a371087e40bab3b3a0de --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d84b7e856bbf35981d87b6197606e68068217bb0a1855f4b4a5f02a2addd23b +size 3421 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d9ce1828e398783e6b53af6d4c58fab12e1ef3e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd33cfa1b79f4031deff4f78d61847592a5fbc9833561c6e0c2872c9c89066e3 +size 3243 diff --git a/images/Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95daac1ed167723350e4fde31d38fa83a8110d04 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd1e6b6050c1f5b4b4ec5447540a039d3e07b5ff83ca33b0e2cad4f04869706 +size 15061 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/10_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/10_book.png new file mode 100644 index 0000000000000000000000000000000000000000..57adf33ce64831579a85b7b041a8c3c2e30449b2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/10_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a56fd91047e85bf7400fa641987bd79dca88496ed93be221e9d7c7e6e9cb53 +size 240974 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/11_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/11_book.png new file mode 100644 index 0000000000000000000000000000000000000000..2e8d2cdbcf3ac13408d0c4fb86d935cee1061ea1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/11_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:879ca79babda4c0a00778fab46effb0e663c31662dc7e5fd5af659cecdf7904f +size 258476 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/12_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/12_book.png new file mode 100644 index 0000000000000000000000000000000000000000..435e66365848b56303fff0a6644af72db61a006d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/12_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fe044c4b9f1dfc6e0624a9d4f9b9fd51917724b458a05d2e27a0a1b1027dd4c +size 159657 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/1_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/1_book.png new file mode 100644 index 0000000000000000000000000000000000000000..f5ed100ec7d283ef2abc6ceca302dc587d50f9a6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/1_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7aeef9f08ab45cc44fd6a6508152b9db70f0d3e7413ed6dd57c83261cdc5b8 +size 108877 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/2_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/2_book.png new file mode 100644 index 0000000000000000000000000000000000000000..2513931e986a48eb3a3b58ccf0ea388c60771891 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/2_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d385f0f9e140c7be21a69284069ff1dcb43ca9ba1564d2db801f50e3b4180648 +size 185508 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/3_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/3_book.png new file mode 100644 index 0000000000000000000000000000000000000000..98da2e4ff5ae15ffb3c8204358db36f6a25e9b0d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/3_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe370671926575865cd0afcf8748304b0afcd1f1fb741520713dfa8c6970ba6 +size 252013 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg b/images/Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fde7b7f6ee43b942990f2b1ad063a671ce49361 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bd103caf2d83a7037cca187ce6e51c4acebe9a2ae24127e821aaa6646b6d05 +size 291669 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/5_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/5_book.png new file mode 100644 index 0000000000000000000000000000000000000000..d9b1ec2ced0eae3705b3d28682e7025441bea684 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/5_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83318ac954c3d1ffdb1d4fd6a86d633143da4417eef11c877ed98010f0e4703d +size 282188 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/6_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/6_book.png new file mode 100644 index 0000000000000000000000000000000000000000..cb4aa19a72388abfb53283109289a116736eb313 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/6_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c12b478c6ec2c45bc7be2c53a02eed70b125f651373af339585d2d0b52daea +size 185934 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/7_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/7_book.png new file mode 100644 index 0000000000000000000000000000000000000000..57adf33ce64831579a85b7b041a8c3c2e30449b2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/7_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a56fd91047e85bf7400fa641987bd79dca88496ed93be221e9d7c7e6e9cb53 +size 240974 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/8_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/8_book.png new file mode 100644 index 0000000000000000000000000000000000000000..b8519808686709895e2ee25ddad395211d7ae3b3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/8_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:682ec75b8f7425a1ff1a6007484f6650f1132171decd64a36c4ebfbedc2db0e5 +size 253854 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Natural/9_book.png b/images/Food_Nature_and_Simple_Objects/Book/Natural/9_book.png new file mode 100644 index 0000000000000000000000000000000000000000..87bbeebb3cedff33fc32c208c582aa1f6d236ebd --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Natural/9_book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c5f53cb9a34efb6b940804b82f3ae314833c917b0e873737543599eeacde49 +size 248937 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9aa60e93afcc4079d511acbb3c1f61810a18bbe --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1153b4ca58b306965850d6efb3b214b10a46035c2dd2b28133033b41dd5f5cef +size 47117 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/10.png b/images/Food_Nature_and_Simple_Objects/Book/Tactile/10.png new file mode 100644 index 0000000000000000000000000000000000000000..63ecd1d97414ea9ffd8cc368b2c3f153c2c0a010 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa0748803dc65ab76a3435984df10691e8519e88f0c40619ca5f7c0199c00d5 +size 717995 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/11.png b/images/Food_Nature_and_Simple_Objects/Book/Tactile/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ff5a72c5a650f341fc4cb2d18c4e0a928b3a202e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:795024656d3fac582b98b7c0d63bd6952bd905f81cdc912dce15458fca464371 +size 658691 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7a9bf243ab8e19d27c835af7d30080e038c998b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7e170273a731d8bbfffe7c929555784ec079b656539945dec49bd76a6ee711 +size 23987 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7198335cd76b33a8a405ada5852d88ad8ee9e97d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6256beb1fa938863d4241e72b7475a025b6a0e757eab4a95faccbc395da8db7 +size 267961 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..084e641b887eb89c08561dbd62bf7512fd158321 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c2a68a05af73dbb0d45310d51b20ac46dd544ff9409cbdc1804d00acd60245 +size 49180 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..184a77d49ce8f8bfbd4d6bd5e0d3df3c9463a245 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98a88247daee80c41028799d47854bb8e594c1245a32d40147d54f0e99c3310 +size 54322 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e77e3ee3805da02a092118156e045b5c66a2507 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1775aa992c386e269ab62bebf8cec80a302d22ac2d34131fb62ec8b37801f8e +size 37795 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..763eaf83671d11a26eece121455e737373cfd510 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda8b70523ef1e01f5abc2a6171682d8a1ab6a4dfa53e96edaacca5e3a380a7e +size 48179 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2278f6fd0988d2d89d35aa2c45fbcc43c319e2ee --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a328e34afd8d69d0f9528eb403556c34dee7f1cb8518e4637890de4d2680db59 +size 7926 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/8.png b/images/Food_Nature_and_Simple_Objects/Book/Tactile/8.png new file mode 100644 index 0000000000000000000000000000000000000000..57bed73e57706f52fe1eebf1c2205073f34e010d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c314e974d0bcb1168ef76de63c6ffc83d36a13ebc00d669805a15a401c04d7 +size 762354 diff --git a/images/Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4fed6bf601dbc2619ba917bcc61e34ab2ee4ea --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cfa70aa8b5d9fa61143d88a9efce7988cfe481a5c415187957e59e36f1db56 +size 71413 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb1a169381ded874de542b1a37fd3d38cded57e6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26aec47c8426e85a87a41e1424acaa2faa6d49cdea9adea68485c185f9d10988 +size 13451 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15afc395e0fe4e8b21ed599e0448fa4ce83e3482 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569f5205037f1c8d89f17ab4295154172444ebc773c4a53ddb40f3745609eaeb +size 15143 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c21ddb98708590838244782333dd0b9aac22255 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be4f8c3c269298ccd5ce9130f67f8aaa625c3ca0eb0c1a453c425d2ee9ec72a +size 23802 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60a48adf2ff64ccd1f43f589e06c5ea1b3f55f1b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0393db701a36b9dbc0074db36d34b9ad338da471a3dcb1100d06dd84f96d655d +size 22988 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f50e9d4a36cf4566b559f9b176ac841d6d127009 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d38cae2200ac2963d97972e3070e5a457a9e8ceb7afbde33f2b63c81878709 +size 12212 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8233431614a1fdde66499a713d4083bc6f5c9220 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc19a69c8d19da6cf3b0acd72ca7b6a78f5765e236620d3ee32bdd030ac9c378 +size 97544 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1aa1d39ede6c6e562df8ca8764d126dac2bee1e3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8edd29ca9a731b7018cb8abfa4598df8f7a0edf7d89ec3d69ec9e240a562cebf +size 18326 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle(2).png b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle(2).png new file mode 100644 index 0000000000000000000000000000000000000000..6f1cdd3c91c1a4e5bacfd17572ae212f514449e0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle(2).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36f084769b899223ca0a9467b86f17581a387df2fe15fc412c15b9d718b557a +size 59614 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b6c82d8b0d7328280468ceb8192cc52951782c1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd93ca28e48def353074faeb8b888e1de4805fe25778bc8fac22fab0c1167606 +size 48636 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle(2).jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ce49e5271b6366a435e40ef84b538b5b61c4d46 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5838d02518eec5d92750e96c2166373d9af6b57f491549a12def00344fa6b1 +size 16220 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59ef141f158e60ff69b6922f8cf32b13b7473995 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01df3633647b86842492a62ab5a3519926bc856a5a13484119dd6a875f3b8e1f +size 13491 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c5e5b2c90dd0327f6df3ae3db71a170a0d2c528 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55fdfd049a78fc5da8fd9c08508be8456a84127eea0efb23558fd4796c970b9 +size 14473 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c34fee2a3ef204e72c85dedd4334d8e4ff9fcae9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4132496b1a3c813a9d6fb0866b6db2c6944127522d82e0407e7db1f7ba50b67 +size 4117 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..67ac5df667245a29d6d712d781a8d4911330c8db --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7536c00b4fec689c02b38e29ef9adaf8a43a2623872535a85a40d3c9e53abebc +size 8943 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..978f83b72d03052393b56ad793bb6735788c80bf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7901ce11becf63520a73ba2dab576cfd161672bc11181f0f2df1f7d7b2e4d8 +size 4103 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a450f48f216d2238043cd3ce1f654c1b2225388d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c67c27f8fe1ed55bcc3307b1d961069dc1c443d7cfdc2a1e2facbe62c20379 +size 3729 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..18521f5045c94fb25dac4b5ead3f84859a3c012a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad35e322631ddccb7d3da9576a684d97f95111a09b653c69f1849cbad5e9235 +size 3451 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4fb9743daed7f81c153041d654a9b4856e680408 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6877d70bf0eeab301149f741edb24d6f9ee89f70d424a8635cb799ae2a0ea8e7 +size 3753 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e474e1e30f4688f5abcc6880e643eba51e891491 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44626715b5c090844aa2a88293afc52bb30743bc0fc29663cb294143fb52991f +size 7059 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0524497c2832f4482cf3af8514252ff329cba3bd --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc868d9673a032d4531fc0f6bd56d498d8a4aa4ebc70f0ea6ecbdcd69654a95 +size 488017 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..61981db9274cc855b65370ab37ef1f26ea3b9718 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:198f5a35f170513850ad6c15a8dac6ace571d77622c0658217fdb9aa4b70cf8c +size 11886 diff --git a/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ecbd52f4b9556335a135d0f73a72088cfb1bc94b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f1684932d17e2f2f3e24f9858de1eac854f456c473eb3e3c080a67aab66336 +size 10478 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bee08b19292b304dc0eaacf5111ddd67e0cd9e7f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c50c83ee0456480ef950da5bf7b4ce0691773e7e5769dbee08f09a70b3fac5 +size 28318 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f9c5f6f7305460f1b47147bff97d7d23cfee544 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6503d83881ed3d116a49857887dc192aa00e93c14046691ec98eaca71d4a636 +size 126421 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bee08b19292b304dc0eaacf5111ddd67e0cd9e7f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c50c83ee0456480ef950da5bf7b4ce0691773e7e5769dbee08f09a70b3fac5 +size 28318 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1438cf3aa9d7f3d2e4991fd65f8fe9c0140acd4c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec863af4a8a9493ce55683aa6200fcd33086561b9c7b89c2032f0e5027c0600 +size 21919 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffee6756e3efbef6af63903613bfde055c76deea --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96abc208ee10d2e65fa0756492d1efa88a6df8e47ec547baf447c39a2947d40 +size 105898 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7f4b090338d36a33f590756eca4acbc9da54f68 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8bd3184c4a2aaad13009f715edde2b1f7c5c6580728b9576c0718ed3eb83753 +size 272593 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fce2c2537014269ab6be3696bed9d000195197a7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00309158848fbb16d5dd518414900b1530fe2f6fd9016713c583f4938422659 +size 161936 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..058826394ba08176ca3a6645a0607fc6b3faa4bc --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64a89919d3884a3119cc8641b126f8e901f6b3be947087696659b6c257d3d3d +size 229194 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fce2c2537014269ab6be3696bed9d000195197a7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00309158848fbb16d5dd518414900b1530fe2f6fd9016713c583f4938422659 +size 161936 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c9067c718446e589d918e11d27a90d27e7cccfc --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88100803e34df65c392e10518ec53eace514263dfaa083b6a540c36f786b4a9e +size 12424 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20afe638a96ac740112d615a2de4bd8fb86fe543 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9a05368fb6f48b403a44fe9da03b43987c1b827745bb41eba1dccbe93df2b6 +size 137469 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/1.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d262344456a114a1736ec6533b11a50b3b2a8074 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dae1dd9f793188ea6b91a4953efb33982b460951667d6e4fd8c47c9192d658 +size 8278 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b89e3fb5b1f0acbf2a1c6acace0ceef32019842c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1ffd636b605bfcbe6dde34421151b1a276e7ba10400389b8f93229e9bed8a0 +size 23845 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0f1f361f4284197fc42b4322ee27eb5207c205 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3a939c4ec82636a17cef9f00b504f2f183b052aa28233cb94ac5a9ebcce1ae +size 102439 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7cc79f2474f07d103af9239d3405cf25397561b8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6715c79cb87111c819efddedf3ea998e5521f2143449b548d41cdb34626d52 +size 25382 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5dfded4421c5e04d856ba3139caf577a32e8c278 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4416bb708ac19b21c3419d579d95534be792b49a67997a9b4bbf0594a0c5b9e9 +size 17560 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9062d95bc4c1ec98aebe3becc946726c5ed8b674 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19de99dc1819ff1d85eb9bfeebb06ea60c17d1e7437468317dc3a26cddc63a65 +size 26091 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a7c828b3acc1071897e717174f80fab98040a4e5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796bfa3e3cb65b7345c1f4e553f8ee059a5b72463a72ac93b5c1056b46b69868 +size 17756 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b5c7a6f9a01b0b4f3304292d4fc3535c8b3bc494 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa44627f6fc964e77ca83aea37ecf8eda81e32fb9c615053ebacde9a1f8fa78 +size 23030 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cca4e65c55f36f6cc2f2e0ad41e45a3a9457447f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ea8fa7ec65b09699a3327c333bdf77f6821a326912f684ab9ff52998becd90 +size 11882 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..45922bfaeb94dd12fad21d67951fa15af07efbeb --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e8adfc99b7f49570c1c18f534d1197e9c26034b1b8e9e03a0cd33ed28fb9e7 +size 7357 diff --git a/images/Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bde9bfaedeb40ebf29a6caa97e127c9812f6dc36 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83a8e135d1025e5b15795763004516856355785d06754ba14bda3cbe43fc9c9 +size 19990 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..815b682bce4f7434f49b9e216cca56dbbac00e7c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3b617c3697b81b990c2b9c4e62ebcd0035b75aab63889ef23f0911171f1f48 +size 11750 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..39eff3212d47a4b35428cf5a60f916e5063767c6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49d7cd24d8efdb3983c4b42b8b697d6f3d4c589993e727143814e8a7fa8d32c +size 30315 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..98db94449b9d81573c0ce27459cb9f2db8825f92 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc5cf8eb7506f3402551636035779c1e314b2fcbbe4e76993278091717f714c +size 16315 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49d98b2cb474c9b7bee2ecda4823786a9e2792bb --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6ea79f6c048b65527ce45b5a32e10349c965b75715574eda76658cb915e1cc +size 8945 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..25c3bf49b76eef7075dbefe17a9c1d312f5aeda4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375b397d4885436d8f7100a10aa67a39713594112dd391bfc1fee248cdfc7aa8 +size 16359 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..de73c941c0c8a9f5c1f7b3c54068db7e9a6acce0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e56bab01af6570991e1c73d05c404d2fec2a6d9dee10ff13f79060c80a9c0c +size 14439 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0456c85c04aa80ffcaab58101bc654c5779f6e26 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1191cd2d5ddaedc010f3b8e28e8de5cd34e042851c0b2e6505b5b0395f2ba7fe +size 12182 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..31dcdf799680c4b54184fa2b7ba1ece22c9e7cb3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fab499bcfb8d0217a484af0c7aa02c9dcf28a9a7e990169eb850227d413910 +size 7715 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18f34f9bf8aff6b9f89367a21500a1369b26d9ef --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0746ac38d00149bebe49e79ce8b623d46ecdb7636aa103405c69262730301498 +size 12721 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a824cf93508dbd397d24c30bd904c602840972a6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b5dd1ec3b98ed3edf9a5edef3efac30dc20355f721fef0a1dbe4c1b303902f +size 11464 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..67c13a8f7d9346d37cbcc02a8dbee03306dbc611 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b2e5dd636bc42deb0e86cdc2c6af44df3952b103fdbe3ff31013ce0895ce4e +size 3535 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3be41b10b101ade3cce29106e69f06f25d98beb7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2da4781f040054a33ed72df40a672d04f24e5dd389d9640e77c0002b0518257c +size 14287 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8c631815d2583b8a75d050c85b4284e62519dd0e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872c1c3af18380cc1373a340a84a78ce3d1e9e7b8757381a82643c8cfc3bda23 +size 19292 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f4c06244df94ec3420034f0dd81ec8485ae2f445 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6150f011e6b1207d624c3a43869785fa6207973af268882e794cdc86eb50959a +size 14405 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..58332d184deda445edbede8f31a8d5bd61edd8a9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92accc8b5ce978d0777e4c83eba2c991cbbce0b9fae1df5ce37589f9cdff21b +size 11927 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/1.png b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4efe5cd9dd5cfa490f167c3785e7ca4eb93e8915 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345add7b9524a89ca6b87ffeaf79a721a5f3215bcc47171b331ab014ba96a71f +size 485696 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab8acd8048429769165162bb275c4c3f5ed52aa6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e60625a524bc2e700d91980497d029ac509945b69624965a663b7fddcee513 +size 25563 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4afa341fb484f84562faef7fb6e8ff308f5d8d4a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bfab23c5ec709386952dbb18b0851de1528ff4125b601ecb39f7ba9426e293 +size 13325 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b38b8737c072514818aff722ce84fe0569e2b46 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c5a49c19c09d3b73781f26cbc935e918d1ab80b11e6c42b8069abf773879fb +size 16684 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08ef5ddfd309a252711d5b986f682ee425c72d5c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f48a66ae388e4a5edd886b88cff036ca16135626a42c597a4b8d18362af3a3 +size 20903 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fb27fe744b69dc4f413e77d79a7ca4903a36d98 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff4a66af35548d6a97a5b8d326e5aef50084f748b7571ad7d6af025823e54e5 +size 9514 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f6c9945a07b9176ab192b4f74ff6c9df0c1a1c8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb7b7a39016df7fc9c41164c250be480d31a734aa09f1d54c3b19acadb5fc27 +size 19325 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37f0bebac48ec2daad399e21843e323ef980f793 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2aef7fe4f7d02206aeb5233b35a2aaeab3c41362f029c1fa4267f23dd74f1d +size 11308 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d2b14ff0d17f3a044af7f76f53f37eb55633e9f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0cd207b82ad8ba432b2f9402ed4758ca6a1ca70e80fddcd9871520714d292be +size 16575 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..622ec69d215cc2ee12edc7e47827882f1fcbe235 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cd6715157f16501ea52f405343ca952daa8778c01effdb4a823ade4e870b09 +size 19059 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..742feafa2c80e1d6adc438eabf67454ab5f6ef0d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04a5ff747d1d87aeeef347dfe31193d193a668401fe744ff3c3b0b27166f966 +size 23926 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9810b960494e677b9373dab87fdf30bc8e8713c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca880c390737e039e64aa65a77d0a8900070a2aa22572f147e04aac790cae72e +size 17342 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44a1661903505f6d2a0b27187222d476b2ad62c4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c31d9e64d9fb23bd82f1501890764914cd993ec8d75a4447e74a139ec846c43 +size 13742 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d7f1b7e18bf9cc1561936204873763c4df68dda --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ea0616b6bd967eaac108ec04e32aee553985a3623dff0cd141695e803cde53 +size 13490 diff --git a/images/Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efb5fb0ef6c6abf9b4362643fa16800147021f6e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc43737ff1bd8902d6a686c868256e5d614c7d5046bfe95866ef508c4b6c5a48 +size 10647 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e741122e1c5d929a45b623329fe3f49b6d310ff --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b388ede1997e2365d10ce6cdabbfe0f0554dbb9eb14c81e40f88a0dc3caad1e +size 34297 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a073aafa3637f582113a2daf034c730f3643ffdf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c6a059d7222cdf641a62612bb6e19c1eb83cc5847bfbe0111b498db0817656 +size 14761 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..555da3537e20008802bc7bddefb16a6c718c7974 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762e46850815d690791728fa918eefbe2846416cd5bc495c2074d22e6a50d18d +size 21790 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bbaf0fe52d5c8f76059994deb1e3aef58a0aa8a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edac84309f74e7a89d18160711f701538b5b1742b58f95e98e9b2d7b495569a0 +size 9967 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f074b090e262c26e8da37dee4bf5f47a809c9ce9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b662d344e28bbabdc4db54f2fd4c9fb66b32a4b8c9cd7ac9c398f4fc14d8c4 +size 23064 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81853584e6a8c0899db52aaf8686eadde4446d97 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8300243270e660e0d431e6c6262d55eebd9ab254f76447e1035b53b16577d72 +size 49298 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a575f8a38db2d76f4bbc009939354e0820d2c55d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c02f2d555d895848d17d99e48abd179756f3314d84d3e225dad88aee8d5fc3 +size 18570 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0c4c7c8b8ccdd89956ecfe203ec6bf3293aea2d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f9be11275eee9199da9d5a1ec0cf233f5da1541672b954a267b033fddbfca0 +size 72398 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be324369d5c25e3aff2d117aad3cdc0dd7ed933b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3951849a0aeabcc4677b7f268d73d21065232ac84fc61a89423c9f0713acefd +size 43584 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/3_2.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/3_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48cbdbe842694cca48b1928c650a28eed9d945d2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/3_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c38fa3b69207f856abcc9478b0288bc8ee147737711f898f91ff3090cfeb370 +size 4421 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f76a52b53f9cc05c153d38964fb358fe777d219 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6688bbcaff10c35db0016ee4f44aa815d4296d05100cd2629433bfd236495145 +size 19646 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/4_2.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/4_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e0b9ae5a02652863deb3e44ecad00137dc39089 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/4_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caabd2f4e9c8cfcb0e34ddf765221152fd5c3481db345c2ae14c5f999baea2c7 +size 3402 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..168397fb179208b69bbfe01d4a323f0ebd8fddbf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c34cf3a15df9453d7181fa172923cf9244f843c83fe8018829bd9bf1c08cb3ae +size 19335 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10ee9575a5f10fd25f22274aba55c0524a53394b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337f56edb9ca315b663efd1664a18d036ed683b244d8150d1a1353ff2022fc2d +size 21480 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39f7018d717c172e4ec8d53871f5ecc312c91bd0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2432456a792743a2fc2706bc018716dcfe9247c7c0c6d42cf824a7822908cd3f +size 12649 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48037e971a6f34ece1491fc5381859bdd2397633 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378a89a73ae437a96218469d598c5925f8f0d98f64c7ba2b872adccb56ae260c +size 33164 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/8_2.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0602b1af60d0a4741a7dd62902fc664a3700ad0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31d0ed3d73f38e64c47b811bf615c7dcc4ed57d119a93cd9c67c7faec702fd8 +size 23626 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..342fd4de358538ae8dd1a702a102e19deec83c96 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571569500bdef23e145314d27d9b3872de0a6f34464204941ad9ccaf97a19168 +size 21847 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14477bf2ac13051ac91faa4257ed06f492b4ea3b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe1459580802d6c2f6f8b499956ac147594563827a79989bd73b919c46dd6a8 +size 62352 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_2.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e27401c636c65ee13d03c5d072c9e4868c349d0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0917d333a4e4ca93e30d7ab706e21add04880e35659bcc29b188770173c113ac +size 105182 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_3.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afbce2ee1da15077d11f7ebbf76cb8fccc59e2e6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b891284945aa9b48a5b89325dc6af98624dac26dab17442ee3e3b3a9735935 +size 44976 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_4.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38dd9693f7cea2edb33366d673203bec017864d2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d30344029d625ae4fc168a5c7b56a67c8b9e92c0069733c73e0446dcc9bcf5 +size 10154 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_5.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5118af0d74474e0945b0fe175e9d0e329d7d87e7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Natural/extra_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8935e637dafa49765c74a70795b01155bcb2d47966b06a183dad07906823e728 +size 15677 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e889585b0298a23e98775d93f8192d269e5a377e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80438f3cc3e00ec46fb3de53e2e0f9580fef2483eb822191a5a0839e4c1b8958 +size 82911 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5258257fa89695642b904a7ed3afc576f718630f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c748cfcb1db1bcc3f5eeee0c8c1517864b3de19cea0fd02e573287f0444b4c4 +size 7494 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bc30a044839e7640e9b09f252cc61860090d778 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208679961f6cad32ce41bd6910d02a8371ef24b918de3327548fe051a38c0553 +size 5651 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dd23fb53525dd3e7ac934016aa28af69f8623be --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f7c438c97369806961f1656eb8613c839665fb0668fada5b9f64d8d6837761 +size 6555 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c10be97c1cf7d1ae0ac4b6eeca69cd4fc595878 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3b5df024d754bdbcb40c90660facf977589266d0498b518eaaa8d8ebffdf66 +size 6527 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c82445995785b411846f647efa9345f736e4e16 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e639f354c2991f2cf3d2567db56be1d0c08e261d82fb2ca059d87291d5ffebee +size 3804 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46f6bedc96897e3d2af41d187546f3b85849d763 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:decfda7d180900462ae4d2fdc56575a493b9d932691e961d2ee46beb46a1d631 +size 7806 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85c6fbd7369068964eb70c76fd2851cdcddb382a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4858c08ceed3955ac1abbbe1922f8cd0618a8f022a875e7b056de0662934193 +size 6014 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59138fd5c9a3975edb1674f78af76a04e07d4c2d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a240f53511098d3ca1f1d767bab5c37b31b5552bc8f996d6faf9ea3be87ad720 +size 49975 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32499609a1fec15e489e1cd351fb90a6e311e58e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c90ffca8319758dfaae53728765e89df51a7a7ecf19ae77ccfedebd78f9f941 +size 46415 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c912fc10058dd034bdf634cf8093db58b8b1e16 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be83b0af4abd7fb33996bbfc0e8e56da72e460db725b8487f1b8f83fcd1581d7 +size 30351 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..953ed183929a79f11c8961ba1794754be8da28ec --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361a4033c9b3373037b3df575949e091670edecbab269a3f72dd9a0dcfdf53cc +size 10264 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df92ed6e135bd38b5102e11330d7265ca0507f95 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9bcf1cf21e349774d1b98b7e5b15187a3678a7ebd744c6493abe9276cff654 +size 12634 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..f7f6736eb284bbd07ccf8590ebdcf83f786ede98 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f41db1cab3c2d9a3f0f1a3a502dcb0a52e3babe0ef505881a7db3dc2a2b3309 +size 1259480 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0b4cec4356b72ddf9e4f209bbc5dd227173c3aee --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781b9002be36032d579225f74b7467ca44d73308bcf0e0d9dc5aa95a166e4bb0 +size 23275 diff --git a/images/Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48a1f0e6617da2300687cf3fd99030b688dc55af --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e74677c7e0e0370e742135de36c3f8f01955f077218b8ac1907b2b7a65d9653 +size 4744 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0395dde5cd448fad629d3c7143eeef66aaadfd9c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5fc385ad8e503a7c21942c84a31a6cadc94539709ed70838ca39a8a61e90e01 +size 296656 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9c067d0dcabd9e003f1c55d9da942c16da44ede --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a857d7050a7f2c7c00b7448a9a75aa41b19437ece2eb7afafba05cb5eafaad +size 111706 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdff5fe96291597b6d0e3b80c693c0da2334e7ee --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ecfe098fff823e004aad523b70a2d9e0233878cc9b193fee3090e5078091057 +size 281128 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0f9380c05af448049ed8f2ecc3ffc65aa72ff59 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e360748110a7cc25661695fc5e2e7b9c0e382f4b1b2f4f498325530c0b9550 +size 17199 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfa271196a4178cefcbd286d110a8e5b48a45f65 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5037d68e962bbc4ef34dc525f86ca99852da378ff443c091c188354d64dca0c1 +size 32790 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b83db9407b745f24cd4c4a1c402a882b52d3ec2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c0e1bd7c57636d0f1cede4811aa53e8f7555285663b95e29379922c3547407 +size 33889 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..719f65a0a7a9b03b48ef264e6738d7aa5998b4d8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c50b05efb11a72c66809eb559323246c18e4e33a4482b5c1f24d7aa425b11f +size 43554 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..719f65a0a7a9b03b48ef264e6738d7aa5998b4d8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c50b05efb11a72c66809eb559323246c18e4e33a4482b5c1f24d7aa425b11f +size 43554 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..966d32988ec8263807f9be5a1919baf7d6cd1ff7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a6b2368cd66390f338a519927712aba7d883451216444263430b1a7783851ba +size 87355 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf11ffb0882dbe84896396d50c240c126c084bb9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb1036bd0f22cc0e74c6320e4c199f0b40717709658e251f393df400b9d428f2 +size 402220 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c12535f8e7dda4879d6f186627a70769cac7d899 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a41e4f9ec177e874c5221aeb619d5d3b864ea98d40d6cf8c0d6c8a1f1365e1 +size 41930 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8ca109344324c289e637d633b24af4bda8ec92c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c002d60e03891c665abc21c4ffda5c247c6f533c78eb602221cd77374db6dc +size 56831 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..733839be73f1ab63933cbd3e128fe31a3e0cf11a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f86a62ee4230d50fbd96c095df3c92d98ce42bfdec01793fedcdf12e52dc58 +size 200015 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cadf7e04f6eb313d6dec2fce992bc095b93207c1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6073396b6e555aecd103e3a17c25674253a11f932d484c51301b39200a39f4 +size 7134 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..867e3b071099957a92c0e7a4ef6e71a840a30fd3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece47e3d9c116fc676fe5a5f9201f8dee8346beb8c2222e6c060390fd8503c6d +size 15845 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f337eced73d1c862ebc2f111e656967ad4cf9dc --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e968bfd1733ce58c6dff161fb65dec124dbee969927d40bb8c8c6aced7d0dd +size 8325 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78bed4eddb6bcad249492e197b1a4e1969b77fa9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575ee8b21085972101cdbc704253daa7ef8f1813ef6feee778cfd88cab68a3b0 +size 61069 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..195f4d4c12dfeb57f9802079bde22ac7ad9778d0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47686c2b944b74ecb6736c3b2df9bba976a7ba32ac671069faf1aa74c207148f +size 18982 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..204bfe9d97e0b71ba3e4f134efd039626e31d1ae --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de23a7aa8a2302fc5521435958ba3204d7974e0b1db14703e5c897f1f1dc34d3 +size 29844 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9450372f2ec1e698e9d378aaca1ce37a6d0f7264 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca65e068d6775da755a5fb4bd38ceac68f4b4125c1a4b78cf5770800cfff27f +size 25454 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c74414845190f127e2d74d47173934ce01af8491 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3291070de8e729ddb2360333ccbd4aade957010f95453becb1282311cfab2cf +size 15838 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..efd3b7b432c9f3e4dc1f450d98ead4cdf9ad1198 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8422b7e9a31b0b00d1662ec12f37246df9be8ca9255549dc5762161fe0ee99e6 +size 857494 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac88473f303b15e72ed79db8bbe414aca382980c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed19d138863064229d7108184e8fc7256631fbb34c77660729d759017ed1538d +size 26006 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d19e57ac7f41139f218764fde0f0d64e4c6c005c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033ff8360e0c56fc00bb7ecf02d075692c8c17ce0ebaeb6479958b4276199421 +size 26678 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acb41582ec4abb783d246f6848862f3658e6ea44 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d459a70817cf38956576dac66f2d517449149e1d3effbb17ea56fada606b81d +size 18349 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74a849877c6dca08f06af2f5f9b90027c22b6831 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef087c2a831a3d905c4ef727beb2f2e41f381a468933db4baaefafff1b72dd7 +size 19308 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ebd269aa2be7b36236dce0656af454cc659fd1b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af40cb74ebd1a316a66933e3f3b5239d55966af22324bb019eebd5eed51f0ba +size 15744 diff --git a/images/Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99475d71ac709644492d11bafd53d2f4686a5344 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a314287beabf15b7baf6edfdde0639c7e60dec41a03436d696db64e95940d7 +size 22485 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c32e3cbd31ceb2caa61a6c999cd782f31c5e20c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754c50ea7b237ac1753e97128e9d18c9aa665e7be1249dfdd75428f6fbf8db90 +size 35254 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e05bf797885a710461257c33e98a45dc202e07a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee4a76be37f1b0360e223afa432537ab2f52a29b7b5590e2348c9d22116e2e2 +size 12097 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7a3c9ce209095d5a9df22a2be183d178b969cbc --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c32c8fdc6d37a60fd97a4cd18d3f21b8e97360c00b0f277899410c029d6ee59 +size 12903 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0a454ba22c3223c4205679ecca07c8309f0e479 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993dc84cc017daa6ea1c1dc73c964d0c76fe3d6e66d04f4f95ccecab0a8553bb +size 4576 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91f3172faf09b84a246fa76b226e10f86ea3c8c2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f28062d4fa751bce6b18fb77800f210828c29305358084b79b8436b55c2d9b0 +size 101920 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..416aa63e72b1525c02d5edb6b433d4a05f76a0b2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a165737489709904d46b0c6c68e4fe39db2e1bc4f1838564b0973939e02a94f8 +size 16609 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96c802da08c43d294f6396e060824b363128f5c9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7a1071319f412de9a6d7702491fa34239d592b956536cef89de5ad54ba0480 +size 49634 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4a59fecd182f8ba77e9b9bf976ea0f8ee32010a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb87cd7697812098cef0a5c2e004e7746367e6d937ba8b4aeb072c6c7269a4c +size 16506 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8ec2ac00d62c4dfbe3f93f47c40421b245fe9fa --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e1e2e85485317c52c9a1bc0a8e3f41e9827cf9ae3eb59c01a8cbd9c2332489 +size 8549 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a85d3abe3837be0d55613f90a7a25cca5258686f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958affafd39926ad5c7cfd7f383f82dceacd6a1ae99695cedc7778550be27342 +size 12314 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..615c4ed0d9fdfa9b71ed13e001a7aab526c89be4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffc69f504099ea9f9aeebf491ec4ccf917d0d7079521f944869139d3b3d746d +size 5037 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dc18c4b70c662708eac896a095aee298c7a4f79 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834cf647671d645147c6486393170dd3960b04e177665614fe6058d737e20683 +size 17458 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f390ccc8f508ce22d82d0d169df376eadbcdbb4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf7496ebb53e522bc1ce3c3ed9a9568d42eed83b222f8825d304fab1d25bed9 +size 6553 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca6172e2d98b6590c61284fa5d9a83a645dc40a8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745473ee213806682f18995b99f3a3910113285dc7a47266974bf27aa7fc7772 +size 7133 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ec346e1061ff9c50f90d1757eb5ac3140867212 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a94e0cbbae3e1c68b9acdd5134117e22102b00df198fb3ab79f5cc78b806ce +size 15266 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a94bd5e6ebf6c9b32c05af6560e07e4a85fb3520 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:879f66e478f02cf28dba7c8d1c51291bad9c677bd2d44fa664023c13b1fd487c +size 879648 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8477ad5047aa4624f9945e048ef4a4439f96105 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1ea31f3c44323f7b5141bbf1dff113ff18bc99c165addf05954d5dcf4e1292 +size 9679 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a61ca45794c4ad4784291b77100de0c363a8be12 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a254f4708e494d5492fa85bbd722e624d62400b96d6a3eab0e1a2f00e9f9038a +size 10333 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49bc73fc7e42a18c206fa785a822a9b46b928305 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920ae1044d2a795744f3b93ddc598bf3ac27168020b624467d01817bbeefafd6 +size 8547 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..896840771ee7d1fb80e9b9ddcbb2c1adb3ffb1e5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ac66dee05fd0525939b9efb599d836a0c9370918f119b4284956d6d0da2c52 +size 7166 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d0583f994a7aa3a31e561c030186bdbd6535b0c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796a30965acae84a9b00936bb5e9c885377492396930e0a9bdaafb26430f190b +size 6604 diff --git a/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..844fd98bdfe6c9380be49c0719c09bf1d97fa0f1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4358e2886f02615a0e1606ace2c9a275d56f34344973be609e21abad60ed9327 +size 7717 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9d98ffed4aa4fed8ffed55c462387d37817b7018 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead761b6dc01ff2e029703013c7a5df3e7a8afe824ce5cf24bcf419ba2a6c203 +size 69710 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..182926fdb74d72596374cb045d1bd539b2bdbdc9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f94b9a9b2e603e50260c358c752248715337b9d2a4debd7ac44a423fe9a99ad +size 13269 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2e8b730cd32ba220f5f898497c84ededaa252b4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd2c72f968d665e287fffe68d5c065bb4376dd3d28c1804994b86b30cda29e7 +size 24382 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b45951c62d37fb72da852f4ad727f1bc037f2ed --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23ef59f007c8130c8c8e44caa9ca96ffffcb77b35dfa065c6be11829e22f329d +size 56712 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd1f0fc97e949631977e7a0d54c4f7c7086307eb --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8d520a6d524d4174e26d89648c7c7290a5f84383f4563ed411608ad87bb365 +size 15267 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bb97ba12d8399a614c8fb81720668e3c2ff7708c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdcfd368f8ffa593ca94b421848f248ca427ecd0f9121ef99d446003b1fc0526 +size 61079 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ef43256bc6641bc33f1184d07d31ac167efaa3b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6adac8091de8deab4c99b95fcb92fd9fc80106b6650490bd7dfa1d21030211d5 +size 57241 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7b076ee15024948366409969f2646088959b98e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c8b9fd76991b3608ebff7aad8815d245bf05ea24b70ad49c200cc2481d3fb9 +size 15529 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc3983dbc63d20fb902d7895b86f7d405121028e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061e90bd2369bd443075f8e597958f80de277574d10e77a2cf2c57d77c303eeb +size 10758 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc3983dbc63d20fb902d7895b86f7d405121028e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061e90bd2369bd443075f8e597958f80de277574d10e77a2cf2c57d77c303eeb +size 10758 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd6e3057091d498e8c55a6ca4535f166f250c101 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d7ace3abb4efc1ea114e42776eb5a8fe4f7677ca36bb512785f80df6ad658a +size 39071 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5eb1cf2b876140719456c83a51e3b85c12244bab --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a00c34c89e06317f5935a44ec879e64d2f3703d7be520633cd393b0c8f97c28 +size 13123 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..494011eaea0379a913a34918d30560a19c8a9631 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08936dde4fde5afedccdd2fda9214fdc8f88cb1386ba677d52cc80190ab58a1 +size 7261 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4735cf8b3dab713002f0ebf915826ee2bf61b10 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1fd8f7cd99d61c5297b5e738961c86820b0f830ecffb078a623ecdc296a0fb +size 22946 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f92485b2164fb8907049fd4d1b1a805dae8eda6e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb955475badc94a0ae052985568edfca46c2f1d698ff40598775f078929fc165 +size 25413 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ff2f72a6edc1ac92b371d4524a334db1be3b298 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c707a678237d2f41ffefbf67bf17b5ae9c9c8ca383234ee32617976643f2c46 +size 34427 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e63ce9717c4709ef070fb364f1836333e5595559 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21ca4313c4481381c3cdd5652b832cb78875023968d082dcf414b6c6c620aa43 +size 15413 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbed84453968d117bfbd1440405ec137cfdd22c9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f8cde51c54568be4ed66fcb95c92478ffea4a162c24b305d4b35d110d9fdf9 +size 21050 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6734af855cce113ed1de6316dab1259ec925f76f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d58be26c260ea04fecb542dcfa80a6294f7acca501a98d45d3e14973f97a40 +size 26504 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ca7a0646714d6528887b5312470f8da14de3902 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47854e2a00459d520a1da3aa4d09dd24704d789716086b9a0f6cf986f23f32c1 +size 22978 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47f21ca796833edd427faf0f5d772ff9db936fb9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853c846ef945c6fa4f40d03b16d30d87ebd819227889b76bb24bca84b475e106 +size 21110 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc3baafce533ba9847b721a08188097084776b8e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f32c54b3a5881e3a633dfe39bbd57986b15ac1611934791ac35966e850b8bc6c +size 15922 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..389f09a807f2a28801cd07a7f9a2f11f9c4f7630 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8201b7d3c398933146a2375acd52329944ecd04449ebc7de45b31fa1f91258 +size 168183 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f51d79350dea7b1e55aab2421beb92d02336246 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a83b7621bd99804856cf590d52f43f95de9299b6c6c63aed5a922f2e003bb1 +size 19024 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ec2b7f72064a3ff36828e979a814f50acf0d0bf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25da84121f9c2ddf98ef7cbcbdba3c6aec429798ed5e9559f3f17b997ce2236 +size 12112 diff --git a/images/Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a61c572dc05f712d6b70177ee44df31a7d1fc080 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee23c9980676af536d73c83bb76a8e0f30a91b72b2ca603996ec37e45634479 +size 12159 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c84da88caf3215fcb009a90efa182011dbf7e5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1fe152919abc203289f968af4a687f74a6aa1357d553b6047cad6dd3cc3a9f +size 327884 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a7e1353be752b0ee82bdb5b643218ffc81c41bf2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0d65c0571f869f3d985a6156655a7d14615e86dbe5116b73255ee2626ff053 +size 268416 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1aca37cc27a3ab6d1e14183b41ad8627b5114077 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dbd0483c2f3c5134536fa74d93d05145047c9b7539d6e32520c93e17c75f406 +size 201986 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png new file mode 100644 index 0000000000000000000000000000000000000000..672ce574dac93b96d02246ef28d6224bf08674e4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ede9f0486cd0798a788d251ab5123e62254afa8ba30d8703a8ea16ad49afb4 +size 107023 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fee1762010fde1d3c37f556fc9733c99418235ab --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232312412cf300570952adc6b7bf0141e99764e369221a2c6405219bef37a992 +size 162861 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6b41460f2328e55fa0824c2b16e94c73d2c262c8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:becc454f62b1aeb2cf812b360ea9efc0643dac9d29bd295377ba3ab55b849ddd +size 107489 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5790e71d2fa5da260a419f93b9e783b1527e30af --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3f2301114bbe61b75aa4d1b5231186c9290f882fdf502689b0000df52e7ef2 +size 68355 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/5_2.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/5_2.png new file mode 100644 index 0000000000000000000000000000000000000000..ed8eba3e8cd3c7e473cb21f40d35ace0aecf148d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/5_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1b874d4f751830e573d6e3a830351d9f810be0fb557a50330f8603f37d7c3a +size 376305 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1530ce7204f0ac51555368f7d6bc609bb8935148 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4fa7c2df2854cd9e5f88c11e943c45387970b9fa4cdc9489d34102eaa8055c +size 197195 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png new file mode 100644 index 0000000000000000000000000000000000000000..73b2ccd7c5f06ace880cc6f7ac2c9f34f31c2b95 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3821b35841e2bb159c2d2ee963376f47775188c449ec72c7dbb25a36e51a9d47 +size 268441 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..672ce574dac93b96d02246ef28d6224bf08674e4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ede9f0486cd0798a788d251ab5123e62254afa8ba30d8703a8ea16ad49afb4 +size 107023 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0628c331a02a239c646a06b0e4fb02c806159942 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794236469f02342804867302543a9390986fe339d7362d7a918d576ade72128d +size 139750 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a55acc64f71225d45c3dd161e8ad5fa25487198f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb54ba651b3b3214fecbabb542de089343191530c8eb4b40d82e2b2d1df885f +size 24982 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a02f68d87f2fba58abdd45faeb2f08f351e2d33 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f209e36d218e46bc71b2c2d66e337c0dd48935a4ee4452f7ac62a7e95ed80422 +size 20724 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e91247f38ab59cd1261d5a728cb33059c0163d46 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f5c990a11afda6c6d6c5a441fb4dc16dcbd9239de898ceec111b69cd4d9aa6 +size 16085 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c07fc63d3224b88f3f62c17f16f115d63ce8973 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1dbaaf423afac9404b0faa2f526aa39f3dc4125825742de87e4daffd66b2a42 +size 15398 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f098d2accb6e0a844ae20fa207ae114bfbbb41f3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d3e2be76fa7ae27110157424f117dcbcc01a5e72ac0a6323a1256cb94ce2bd +size 19312 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6833f5e65ef60e7e9809df9ddc19fba3bfd577cf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c8df4a7571e91ec7dd79076a49ac24f561ee9e907e7a9d948bc5e89cf86914 +size 19813 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2466b4dcff69c73ecdf2b0a1ee6734fcaee7e6d4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431bd44252c69010469077f174b255619a0eb17354424c88f6d5033f83fac9a3 +size 27535 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab7ebc16e811541163891d88d88b10a4f9437567 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47ae34d3bc8e1ff1b0a164b522fa5edae4d03d23e087248b5deafa4efc13558 +size 18435 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fa3328d3abff1eb2ac7aad93852c2e7d16cea3e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4776428d3aa6be21ab4b19d2713c30bdc6aa2494dcf24e9a93c47dab0d3136 +size 23403 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..150f82b666b74fd49269861890fdaac2863da4ea --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930e13a9ee3bcc46e9f9c9050ed6beff718b4b6adce1bb11bdce0b3ff2f54362 +size 24441 diff --git a/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png new file mode 100644 index 0000000000000000000000000000000000000000..10fe15863fc761d5cb874dfee13a93b267b2a86f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e698a266f687fb3508f06d3186791719e7f4d9354f35d818cdb300e0ec132d01 +size 2069830 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bf17b8147ea66966005ce2c63532552acebad82 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e6b30af3246ed33b073410a05a9d14284d0156f295e4d35cfcd6c8f05551d1 +size 122067 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3150bbab903a9e0d17572de887b7dd5282a2913f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0a37c02b785aea9075ded3923cf06a417246879409c6d8fd03c10417224178 +size 153799 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64dfa24dbf56eb7bcf1d674bf941d3edbafb1772 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fd951f67ccc9dc7abbf496322780ed475430ae7ddc66e3593ca4ee727535b8 +size 3638 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d748c5f631700bdfab11caa53f314623e4a819de --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c08ba3159a794e864b5f1e8011fd32ac658eb641ae2cb2b877b2db520ecfb5 +size 121157 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c75348973ee581e9eefeb88aca0d9c2018b9b62d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c567eed58805ee8748b2484af47872b5bb85e47421032b8f95757c05bce578e +size 58737 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..153bfaac6615bab607a9c0e638e40e090c67d185 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e638619e186aae855560236c46332760a080eb4e684491d61d1a430cc3e37395 +size 237253 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..93a8aa93c8318be28f102de271fd3d31e7737345 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3080f08b040695c8027f56582044542e1409d6a9a13836672ec3daaf1512cc2b +size 284389 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9a992f4fbb2f6163373d716bc2c4971e97005ed7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bdc8737c75359a5fc6a2762eb9a8a6ddd8cbbd66064ef089cadea47e40a84a6 +size 193865 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..316f5385d37f4e72e8044814d5f9d85a4fb610c5 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e0fdc674731ff691e27fd46cd06ab71dc85f5e682f0470960926a25353841c +size 199531 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ac827544a66fa91d54dfcc029945517935bb5f4b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5633a7cb2c6fe56c6ff5797f13122b1b7483b0b10e80beb9b2412e38a60bba1e +size 144805 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..93cf692a0cdfc18deec1d69c1168465c50f1990e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984f4cf871ec84deb6c2596f8966746efbf6827de9bc6f84b3e2d90023618a1d +size 249822 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..409cb22903d27a9c299958bffc236d25b9cb47e6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff34a31b7e195aad7e7a5b91e8f17d342c3f5a41022008e407ee4ec4ee2b6aa +size 244077 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a8e012f9ba3cbbf2e10baa60f265e5eb2556e92 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672c1c51836502a0da50cadfe3a4378b6a3ed7cd4caf67c6319c4399efe7bf60 +size 6029 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b42d918ccf9f1bc7fb019dc8bdbd1ec6cc3784f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652e565d47e096cfe577253002336118c59b176386612c95d1eb68d85f58b59f +size 18819 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..563c739f284a698630070eaa244a2e331bb1bade --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905fa9351546007b08a2cf71c2be795f3f9c55855a59a46c7063c996ddfb13fa +size 14926 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14d39857a3ad81ee1da2608c1892ad17d09a5008 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6ed5154a68675aae939a0024cd0d8db980d22db958e616edf749a20c3a5229 +size 24176 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..886fda9202e1be7b463017e54a46e3a329d89864 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c03752c993f36a47ea51ad25e85807025a00ec02140c15e178ff300841794ac +size 6953 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dafec0f7c47e2db35da86d76ceb460bab8791cf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5336d85ba75a07076d79d9589a7a501ecc5e619c1638ee96736f533a26b754 +size 140418 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7757ed6f470243fddd845d4d3d1d3ddfb9decddf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc781d35b05e83946fd8af9e01daa0f9faac0750b4a11aa3a4fe7d1c4ee34de +size 167676 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c80dba971c79612fdc7f4745d194539cfd026e96 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311184b180274c6f4765b4a6d835bec3b9a83db9c96b07784a3572341a0cae7b +size 123906 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e09a45c478335032186319ce424ba0082e57bc42 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bec87287e7b0eea582fdc4ad97aff4f4d89c4c40d28b910e94cae33a90e8f58 +size 91939 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04cce92c085a05e9be8f84c0497255c938c32d4d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72eb2e2e0f3cf4505aafa2a99d4f88ed33d8000e1b482197da4aa1c77eeaabab +size 31346 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..316bd0178ecfc64bfc1744cf8fd6381d72a6a862 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b29d088b7bb024638dcaf23690f3f8ac86a05675ef84f69605abc1ff99b6ef +size 21033 diff --git a/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..408bf873aeb0cf982acf99528ee95610d34cb5bc --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fdbc73f1420eb7b7a89f8a97020cd7d4209a766f0bc7c3b79e37a8990791847 +size 37472 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27d929a520f2a960f97dc11dfdeaa1b6f49fefe6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f952b083ff8a469242d55adfc7604deb8bbdf592f7c26a5f59c7fd3f2620d50 +size 32347 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c42be89f6c804db492c523d24197a2197fb57a2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf753f37f290ea214f33059314641226a9d6fd867541578aea952b799efc114 +size 18680 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/10_2.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/10_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e8db75fe7cb39543a0749fb5905be342ddb6060 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/10_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e29d370e02fb2e6d6f57545faba277c5d86f6b31a42c52880f70bc4ef99a23f +size 12936 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0acad8835717032d8a28825ba48c72fae76b7cd8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fac6792889902f0d405944a7ef1435b01002947c07bf1ddd78a03b6d4e6638 +size 73022 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/12.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c2ff47007a26ebcddb64249980b85d4e7d9601c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a174ba9ab9b7e65d7a4a95dab63418fafde2ecc8c15066ea7ecf7661fb81f1c +size 50339 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de6c6453bc3064722a9d9bcba0b542cb274c9049 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abd7cead0d2b4117061f51215c3fc1d55cf816e9b35a7067dc4c616e9910b3f +size 26239 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5351f071dda7183bcec250d5ac814b35b56c2d63 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114312e77b2351c7713bc8562aaa103093bc4f5c68d8e833c243e0c69520c55b +size 24412 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..690ca3dab93d42c0bc76ff1a0176fb2fa334f102 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4f39eb63040c4085937fe6d79dfc89606c21e4aeabc00afdffb8bf7ea051cc +size 39782 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6f8932c6c2e32bf417529a9ddfeb2b2658d7df3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd515b15b255fa75d647d0d76462f138540f714f0dc4c09325346e5dba3acf6 +size 19707 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/5_Tomato.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/5_Tomato.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c2ff47007a26ebcddb64249980b85d4e7d9601c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/5_Tomato.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a174ba9ab9b7e65d7a4a95dab63418fafde2ecc8c15066ea7ecf7661fb81f1c +size 50339 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86715707e325a3319178bffcaaba6d0f1bed4661 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a308d91b609764f82f7d22b8ad3fb871ebfb936b2e2947e8eb79b9d00e5886c +size 44799 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/6_Tomato(2).jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/6_Tomato(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd4f5be2f3c4dc646ed36230baa4bb178e4086a1 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/6_Tomato(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8ff6cee76e85b5a058c8b495cc232610c84400bb80b501222965d55a020ecc +size 99464 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c08c8922412c5b9a6b9d53adf93520cbe2399772 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aeae2b3963556236dc31e059143b6d7b607dac0a2343820e7a1966b477fec20 +size 20228 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6f8932c6c2e32bf417529a9ddfeb2b2658d7df3 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd515b15b255fa75d647d0d76462f138540f714f0dc4c09325346e5dba3acf6 +size 19707 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f12d29f68e543abe0ba26e5a101bad264fd3635d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36744cecd102fd0af3f049fdd014cc2746038ee0cf2f484721fbde137755175f +size 18874 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33cfd3f9cf40409be03714c64ea92ee2744dc53a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dba19fd3d3d6527cd3d2d930371dbef7cf8f00b1d40815a23ecab0713ade047 +size 8093 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ba4f0f2a54e902a87bc33fb9059aefea964df64 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4c3287fdf81ef209cf06f4b21e8475d81bbbfce153820aa94cfa8a0f8b7fa9 +size 32046 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de09ccf37977a3db2481052f5c5fa2a7c2036019 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96405e5875d556da21b6d00461a085e31f4cea6a33bb8defc21b97337c11052 +size 49599 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcae60757d138d9a7320df8786520f46aa7f749b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74406e8dd2c1622deb6d28c444fcc440f908ca6c45e418d4d14a1f64920ac7d +size 92808 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50c93d32906f369e7d0e6929cf357e34bacab9ff --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f7eb1b1ec1e1ab34f8b489f81251159e6da2aa3fa1306655934048ec0da1f1 +size 40255 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba5c9c2d6cbf6bb3eb1add1f52a22c56362f6712 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63babd9840916140af2926d36c12cd9bdaeaa6aa261e6f1dc09ba0fa80d96f0 +size 62952 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..409f6908692e4ffc93af38e70e93352d3772a3e2 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7603d45194f5c7f63e764c27bbabb425c455c64343af916a9251c584f8b91d86 +size 13977 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57e6fe84cd61c3bc74e29539d61bfd1505d9ddbd --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b252adc8f31b78c8ae4bd08ecb9f159bc35e99f26e22aa1652971d94d87d9bf4 +size 67313 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2125be938a1f2f182a407ff0a3d67fffa0d246b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69463bbd3acde2c57ca47a75314e69cee2ef849b12dee889cfe0cbddd2f2136 +size 19387 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e6cf79382c41036a3cc6148e210d7d1390e76da --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd8f446caaf06926200e1c611e5ea77949892e8273c34ec579a4d98db08b99c +size 10513 diff --git a/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95f02571fc7eb0821335f4479628787981996960 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a32282196cf9d834c898ed8771796df74653c6f77b95c5bef69a35a330cb7bb +size 13660 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/1.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..70b76e6b045779fb5b4dc419ce903a986b78b31e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c5f175d94db52232e2d2e5e2374d7da8020caae49a734d80ec881da729223a +size 91471 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/10.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..81eba29a92dd169908d2129fd91e7fbdfc6a7bde --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b0a6f436313087e36967fa311d658f4d83cfdc346ee58bd466481d00ba6fd9 +size 184831 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/11.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c74371bd4cbc9294b154b79df0ee6cca2dc0af --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9002e7b1d852eeac8cd7e9f4ff693b66595e27c5cbade794955020430a76801f +size 264390 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/12.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f833dd1902fe8bd88b2336efc9cde6ffa84010fe --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23aa71d9146b6165f82b4ffd46176f2bd6362046d2abf06d4254a19d68a5330b +size 181966 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/13.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6b7d574350c21b7d372f768bd9035add20d72974 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306e5ef9759f0a6b5d050c426ab17b4cf68c16ccbc820a18ce90635385909622 +size 326608 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/14.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/14.png new file mode 100644 index 0000000000000000000000000000000000000000..fa5ca41e4603ec9afc3a0d9718570aae8fdc238a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e0c0431f41c64319cfb98beea890f6189577a4856702613e283280237f6653 +size 208394 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..fa5ca41e4603ec9afc3a0d9718570aae8fdc238a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e0c0431f41c64319cfb98beea890f6189577a4856702613e283280237f6653 +size 208394 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/15.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e2892ad752449694b962b1445f80d07680c42d75 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61d9f1080393d59ed8df8562a5a828058664c32b51ee54047febbbf533ec828 +size 200401 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/16.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/16.png new file mode 100644 index 0000000000000000000000000000000000000000..acbe7bb6d706d440da196aac55bd2411fe28207b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d72074aa03d6b4aa9f1eca1ce1c1e4385ecb61da44d8304b13b32b408811aad +size 366362 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/17.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/17.png new file mode 100644 index 0000000000000000000000000000000000000000..dab46993daa9db7c06284d0c1ac14d98903672e9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb9a2990881d4e969d237a282b08128692b782bffa4b550d857c1eb44725dad +size 116209 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/18.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d81f89a60430040c7983a910978a227a4db031 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c1bc53a90c7313c7820d66e3d4b8a65ae9d175e570f566e3db3d84dff34583 +size 153511 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/19.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8f7a0abfb7a8c0f1ec4c6bc91207c29e6da17f6f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9569d9305917c9fd48010e4f27db5a360174a870f102601db9116a61850093 +size 73401 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/2.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c26e517a4410fd284a987815a95a23f76aa61d --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a38a3213984e68e40f876fdfe428e1e1f372c6b88bd8e3b0d765d29eec84b9 +size 371141 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/20.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/20.png new file mode 100644 index 0000000000000000000000000000000000000000..55015533cb4a589214bf52485c04f6aad82ac86a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f581fda5bef3eaddbbc3cfa1a9679c0b8a8ba2caed595002422f96d29b4dd1a7 +size 326356 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/21.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/21.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c74371bd4cbc9294b154b79df0ee6cca2dc0af --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9002e7b1d852eeac8cd7e9f4ff693b66595e27c5cbade794955020430a76801f +size 264390 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/22.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/22.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ab12752ef5d5472ff5634720685d421796507f --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfcb6bd2b0424fddc8cfe6eec9dd22b466422e7891d0e72f650674f8f4a2c5b +size 322880 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/3.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c6b58da4fd5f889e4d3fd7d355b1dd0142326c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83cc5151ca440c9254e53c4c3a520f079194c9d7dbdcc4f4d606f8870deb8e3 +size 316908 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/4.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..379f3554171eb035a2f52f2207a71d29cec926b8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2204b5b9feb4ccbb53470f9bb4e9de03cdf594957c81504453bc44ff46318b +size 147348 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/5.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..95725fbf1d661f443cf2ba1c59ae22c3b3f53e93 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08b0205788025923b45294dbaec3d001cdf4e408ca850ccd35afa92102317c0 +size 558144 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/6.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ba896730c4ee03ebc526b466934d0b9043cae6c6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebdb4e577256fb6470f41f0e12f438eab8d936704bde96c298de3bb3bf9c21fb +size 169216 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/7.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e2892ad752449694b962b1445f80d07680c42d75 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61d9f1080393d59ed8df8562a5a828058664c32b51ee54047febbbf533ec828 +size 200401 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/8.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..379f3554171eb035a2f52f2207a71d29cec926b8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2204b5b9feb4ccbb53470f9bb4e9de03cdf594957c81504453bc44ff46318b +size 147348 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Natural/9.png b/images/Food_Nature_and_Simple_Objects/Tree/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..70b76e6b045779fb5b4dc419ce903a986b78b31e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c5f175d94db52232e2d2e5e2374d7da8020caae49a734d80ec881da729223a +size 91471 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5339bf8d021937d38730caed4f4dd2ada3db89ac --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da06774c2d6e244b71c106e62559384c58e01dc43f785c1a4d39b300e34361a +size 102369 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fab66158ea416f47d0d20b5570f94217ea7bd273 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c726caf3a7de7cfc8c196fd9d22d41261511941d8ca5ab91024fda6cbf298529 +size 574373 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9d711e9279dd7f6ba1e3e45e62742752255780e8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc868b566f25e27cc3226ae7230c49ab545f7dd541aaaca0ef0aa761d45a4c7 +size 15512 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ca3d55d7a39fbdbc8e9c8daa852e246a656d37ca --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed50471ecc2a2474b396caa91323550deef19b3a99e3c82357f89f7f2df3daf5 +size 36333 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..10d86fc4dffe4cb37615ac66874ec18b81e245d0 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3970a28f38c98e4db237b7fbb0e9eea6b6a36039289d9b487cdf57555171287 +size 21538 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/14.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..df902b5a2e3a1aeefba6f6ac48ba406639cb7d64 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153c0352ef4b66bb03fb3aef57a65ab4dd33e511819fcf58d384725b17e73004 +size 12731 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..7fe5174d69d3e0b83a7f6bda4ce2caa69bc9a579 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c772fd50f13c7f6ad6a9c79ebbf381cb436bffafe783e3e43922382398680a +size 1591357 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5f0ced5e6a21c362020fab4b2baf56363e91f22a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea3ec88a1e3f6916f6d7810ccfde4b2a7533aa1aa6c87d744689cf35aaffb13 +size 15209 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5c9fa41559095a258b0935c89cffad6b9eb4d91a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1676258ff39ffb19c766c8e2c59f7cda88d9cbc3baa677299ec1eb0315f9efe1 +size 17393 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..13906d4539e1cd5739faea4f5ed52c94144a1725 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8b109f59bf2b9e6aa8a3e01d4fa0c54a1f7cac4113eca341ba1095a007f7c3 +size 21739 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..354ba7d19d8a1876d57179c7b41f5a921914cbee --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07acfc599942e6437f8a37db31ee5379cd189f9614805227c00f531318315283 +size 29299 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..85d645aa5280f5bcb2285a7192c7c44377b0ba91 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613aaf15f51f3fc8486504776e23c3911ab57dfe71a56b355b188b2993d46863 +size 6994 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a456656800f86fcb102a59a78855ac59eee1f74 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0a491ff8678487bf031fd56a0720a298ffb95e506cd0ec77008b1328643856 +size 198515 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..692eb57e2661337261fbeb556b952296450a682b --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecac66d98aa30ef21ee8bcf186dbf824d3904b8f7aab401e119c11257190e832 +size 8296 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..421dcccf751e8ab7626fe146c3ca20f5e30a32f6 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caafc050be59bc6180326ca8fe55df42f61b907beae1c600ab7c3dd05e931335 +size 24406 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..020ac66f255c5ee99a2ed34e8abd8ce1a27e5ec7 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e668b6ba89f56c622b4bc7ef315bb51ec5e37b448dca6ab9526c4e5ed6aeac +size 8110 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f01de1cd5d4dfcef4a5ac41bfbc1bc82b980931 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8415ce80ca6f3ba84d2b3351657a1296d38f46ec13819d2715db00fdf7e29d11 +size 122381 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56405490c06f78eed1089f43e117f041f75becef --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3d93fa47b2f6d2688bb9abbb965f056170f44066ffeecabd9be2a0e094a9ee +size 51976 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58147c26b6cb220a9b5c4f5b3ddba29051abcbeb --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e02be18d64da49d453a3fbb6a89ca2bf23fa6fb099f060f3c89e68d1e6b5ae8 +size 66661 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf975a49582d6f4f3544ce431a07863f6375dd2e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efb111bb474cae8da0dc0dd96da9d47b32b84545bf7582e7bf8aa093cc694e8 +size 91011 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60dc1836360654eb651d6353269e42c21c1a51da --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10629d43b9cf8bc27709adeaa919bac863779c830689d3ac592829a8ae6508a +size 195402 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..470cd1d2b195948dad59d6a2fb9c4814a20a81d4 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7891fdc8e4c7e161bedcf05e9bcf61ed69cea4c8b2df327e4eed2393a6fb5c +size 251090 diff --git a/images/Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e384917772209bf2b6ca468c901075cbeb65a135 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c15bf219ad937f7dd0de47c15e04184784e07180ca75d9f292531bb568010a7 +size 224356 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f3bf50c88836ec39e7b7022acdd282aefaff891 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65350cafed77694a3d836ba62aaf61cdede3f49fcef83f5f801d81d1441c5924 +size 5511 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18adb2e988015476f65861163f9db96dc169f64e --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878a4f66de7d32f67bd36b71bfe5d95383e550155c7c146b2ac8b779bcc0b161 +size 53792 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dca6ea32de5ccbc9c3d5ba18b6fd7e2883c2b446 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc0cf196064cad48214bcbc1fe1def8a79bc0ea30ead016d9ea437a7fc0c28d +size 3550 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5563239d948076f7ae8506494f5f14c0a1f9b9ab --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8611740a9593c6cbdf22d486de2a3a6e485d072aaee6ef3628c474178933dd +size 120668 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7a20b4adc1bd180c243d2a47f1a1b858827fb24 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9d1368315cc4fd843bd3ef7d9e2faa69940048e8c7ea150882afd720e63486 +size 4887 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccbbb06ad14cb6fabddeaca27e62a32a752497bb --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ca8cba0e5140997b9a7ea86ad7a707daa0bcfdea19f4098e156a53bf9d5d04 +size 17362 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9af09170245376830bd00b186e87db9d06d5765 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e65ffd358699382943786b40af94dea1dcc08b0706a27e7cc3d10799ab2b000 +size 448988 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c70a86d53eba6d4146828b7f33fc07ea2dcca3a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f8426abe61cd0b4e2cbba137730f6e4f17603363977b391a4fc533d7007a3c +size 80743 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d311c216c2b1addc67dc9dd1752c006fd1c87104 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca57d4bfd3ce626c1135054524693a50d05667d9ed795cecde5dee8504b542c +size 131004 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bb4e29bec8e31e7c53b14417a1ddc4fdd1c8919 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002ab9b29b9ea73a81b5c7c3db1fda49e70717967695671dca291d9864c12011 +size 126368 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a572fc86c72d1518e23c51df98ad4d6ceacea72c --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d14db26c11654ea1748a073f1bc8aef1485802f7e44e15788f65e2e93012a8c +size 17363 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f027ce8721371dfc952c9af6e7f8fc64be22fbf8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3798d8f5b210449cf125618aed38cf5c6788501793bca93c164e7b452681204 +size 17818 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3f02d899294e79b4e9bf1ed7f429719ed278dd --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a107baf9022c280f52767de81c5613e662f64067c78d201a9cb179880e997d +size 1475085 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..65f0f1991a3c88be1e22cf49acedcdae4de650f9 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2056aa35db9663e634b52e083645674e08977ebc6fff04289cd9d406bb9151e1 +size 4707 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..082dfcd30e0df87b21018eb93c545553c2373edf --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d12de8b0164818bbdc446b612b1f1f98df1a23913311e83b915aaba54eeec2 +size 26033 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bb1f453ed192386989eb68cfdf890457eb41f039 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e242e4dc39e6550bafc1008ecee7bebad187249edc03c563b940507ad12a10 +size 22031 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6f6c8d001c71f9050b5b473b3b9b25211c095b50 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6676753a4bbfa6537130db41c9ad51532cb3083da178149607f99428a14ac1d0 +size 19262 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..875dd8e39ae37d5c5ed62a822a6c6f5f9fba1632 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842f4d147b4fe594d3fdd7ec6228396088b2a20677033bbeea0d8d6271e37aa1 +size 15198 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..fe4a8a5919f9365d5859e3d311552c2272e711d8 --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0e9c082bcb4cc4ccbe8a972c764444089bf7426621d4b245f48e82922069f0 +size 28347 diff --git a/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..61e8d91094429dbcf412527326d98fd0a40e1e0a --- /dev/null +++ b/images/Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5261f21e34b9691876e10652b0b23b4076c54227b57ded8f9bed3c7de460c4a1 +size 6130 diff --git a/images/Furniture_and_Structures/Bed/Natural/1.jpg b/images/Furniture_and_Structures/Bed/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..979bd26f12cacbd217e7bdae4f238e5436a57e6e --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7e963e16c527d4c58b31cf7122fa33be1fb34b489eb44e5e8434fec3bf3839 +size 15098 diff --git a/images/Furniture_and_Structures/Bed/Natural/10_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/10_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3df6a26411e94cb0bc31d3a09badeed28f3f5ff5 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/10_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7f57ae8fadefc0e5822eed2ac5657405df0c17522a2aa79ff8f5ff720cba92 +size 20131 diff --git a/images/Furniture_and_Structures/Bed/Natural/10_Bed(3).jpg b/images/Furniture_and_Structures/Bed/Natural/10_Bed(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..528046aaed017aa1339f02486ff1348be7c34fce --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/10_Bed(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72584fd2497400f7b1333e9a78bd67b904d5f4ac761f3056d9ee834d109589e +size 4118 diff --git a/images/Furniture_and_Structures/Bed/Natural/10_Bed(3)_Edited.jpg b/images/Furniture_and_Structures/Bed/Natural/10_Bed(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c48da68e6fe90f0f5c9b3f27ff864b0263fdad5d --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/10_Bed(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51d300e906966d2a87cab65564c85263a07b494b83ece8443e098ad69aa9edb +size 7312 diff --git a/images/Furniture_and_Structures/Bed/Natural/10_Bed(4).jpg b/images/Furniture_and_Structures/Bed/Natural/10_Bed(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..73310258fe6c3f79715d28ca2481f992e56a2dba --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/10_Bed(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58449ffb942de8510428ba0bbfcc1fb8f6f1bce6222549c28f857f3e8b4af114 +size 32743 diff --git a/images/Furniture_and_Structures/Bed/Natural/10_Bed(5).jpg b/images/Furniture_and_Structures/Bed/Natural/10_Bed(5).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3718b50e79bd86024bf59874ab57cc38e1aa4310 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/10_Bed(5).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ba222eea31a3ff1c03b264861b9278ca9fae6499099aa948709d85aa7c3be6 +size 2817 diff --git a/images/Furniture_and_Structures/Bed/Natural/10_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/10_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fb3f572f4668255a937417ad63ab66dae12acf8 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/10_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4651e7f32b7818b0cfe30eb4d16b10d202e334ffa0d6df46e8a2ddf57b84a8dd +size 15980 diff --git a/images/Furniture_and_Structures/Bed/Natural/11_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/11_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0d3b0270b7c7394ee62fe6802b8a8fcceeef61e --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/11_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b80facfca4053f0ea6957d57398142d087bdfbe10e6e3deb9e1cf33d7abd555 +size 14595 diff --git a/images/Furniture_and_Structures/Bed/Natural/11_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/11_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a23b0c168cbb1a5a92f0c84e6200d2885b7d9dfb --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/11_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93f239df6033c4057799b8f95127195b7089a55dd89da375e83be1b4d98d938 +size 1920 diff --git a/images/Furniture_and_Structures/Bed/Natural/12_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/12_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..55edd2a88c2b20fe6e4d87e917cb7135bfb3a827 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/12_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1111863b8fd910a3a27efca93bc861e15763405fe0a6cf8d90b01194931cc2a +size 96686 diff --git a/images/Furniture_and_Structures/Bed/Natural/12_Bed(3).jpg b/images/Furniture_and_Structures/Bed/Natural/12_Bed(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb8b9411fe60fb00ecec493b7cf01a8e57c1f146 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/12_Bed(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f8606cd31592bddf57c28dc2417d56bb295e96bc3b973e0642353124b5bb5a +size 19216 diff --git a/images/Furniture_and_Structures/Bed/Natural/12_Bed(4).jpg b/images/Furniture_and_Structures/Bed/Natural/12_Bed(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eed83f8d59372f12e5a7c9a60cbd320258083f7 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/12_Bed(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3801e0d81b766e5643ddd1e8443573c08c87eeb32adbb5df8ab37694e3b6ce97 +size 77876 diff --git a/images/Furniture_and_Structures/Bed/Natural/12_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/12_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1f83093c542d92ec186df2a187a54e6d021b7f5 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/12_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fb59e046f15864869dfeff9c2b8bd9115e5a1b498d5267e72031ed3180c20e +size 74848 diff --git a/images/Furniture_and_Structures/Bed/Natural/13_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/13_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..6dfd1a32442882ccf34a4f4f0609cc99e65e0e81 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/13_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8630fa54bed8a8b2335055f6288a8417818855951f30369db6d7e35e869449e +size 260741 diff --git a/images/Furniture_and_Structures/Bed/Natural/13_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/13_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dc39c9e08c904aefdeed913a92c41d4a05395d5 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/13_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae0bfc35eddc1f7be3357c3b610b7f84aab14d9e4ff4178ecd183a992b13175 +size 54370 diff --git a/images/Furniture_and_Structures/Bed/Natural/14_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/14_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ab0866ee325c782540451ed81f67d47e2c67c3c --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/14_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b926034f2c3193b83d264beaf0964cb6b8a75380787acdafe3a7898dba5bf126 +size 11646 diff --git a/images/Furniture_and_Structures/Bed/Natural/2_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/2_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0b7ef95a4db7c0e8e2607d12c8426cafe5d500f --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/2_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2d6e4356c5974bbcb9a38f88482f1a00a22dbd2cd51ee87a717ac34957eaa1 +size 13102 diff --git a/images/Furniture_and_Structures/Bed/Natural/3_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/3_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10f7512caadd4853ec8e094123421cba3b5d6916 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/3_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97287f4ed7d68a8c05b1b9c30b061659b354cfbc82de977aeee4d9c5a66a05fc +size 26160 diff --git a/images/Furniture_and_Structures/Bed/Natural/4_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/4_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63c071dee55d4c203011fa636428df28eb445dfd --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/4_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edbd10f6e32cd2a2bb388ba79d25b546497708421c019da31a38f3377a57da9 +size 153918 diff --git a/images/Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg b/images/Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63c071dee55d4c203011fa636428df28eb445dfd --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edbd10f6e32cd2a2bb388ba79d25b546497708421c019da31a38f3377a57da9 +size 153918 diff --git a/images/Furniture_and_Structures/Bed/Natural/5_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/5_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..e53bb27be350ae7cfeb1b8e2670114421f5749d2 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/5_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecee4f2f122d82600d2a783e931699e023862b4eb6d2c457dbae57456147eae +size 53222 diff --git a/images/Furniture_and_Structures/Bed/Natural/5_Bed(3).jpg b/images/Furniture_and_Structures/Bed/Natural/5_Bed(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..80f36934b0dde8fb8dcd4eef51d6a5b275d369f2 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/5_Bed(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d470985adbdfee3757d21580a3ce6cdf436be032c87bd1fa1123eebb6b1e98b +size 55605 diff --git a/images/Furniture_and_Structures/Bed/Natural/5_Bed(4).jpg b/images/Furniture_and_Structures/Bed/Natural/5_Bed(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..24d3b9bcfff3ec9289c070c2f1ef404725bc7b07 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/5_Bed(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc56f6b6c0ddc475a7aa7c143f228ea3b040d5d056c30fbf82f3810e0720fcf +size 13870 diff --git a/images/Furniture_and_Structures/Bed/Natural/5_Bed(5).jpg b/images/Furniture_and_Structures/Bed/Natural/5_Bed(5).jpg new file mode 100644 index 0000000000000000000000000000000000000000..796131e6a6e53edf617338aba45d70bb5046b4e5 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/5_Bed(5).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d5fbec871aaaa1a37ba5c58a6123ae49e414aa479ed19290a0959158af3d4f +size 6171 diff --git a/images/Furniture_and_Structures/Bed/Natural/5_Bed(6).jpg b/images/Furniture_and_Structures/Bed/Natural/5_Bed(6).jpg new file mode 100644 index 0000000000000000000000000000000000000000..2565e272df8eb50f2dee6c27670fb3a7c6d6ddec --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/5_Bed(6).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb6a6ceae70b0313466a44995ee9f7c88cc1ca07929e02109b0ae329a639d00 +size 18414 diff --git a/images/Furniture_and_Structures/Bed/Natural/5_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/5_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af8277dd80792bf3e53eb0e331c5b4a72fc702fa --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/5_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d4cca803e93718e6f92f9828e5e37d5a9adff9eaf94a97a79bfb5c4d40ca4e +size 5860 diff --git a/images/Furniture_and_Structures/Bed/Natural/6_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/6_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..f82b5c62dac63f1bdd4df7463961b735d5b9bb07 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/6_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1db8dc2edfe60e33d54b326f0809545efd7cb30fa1fbc8a8c16b57962994272 +size 43434 diff --git a/images/Furniture_and_Structures/Bed/Natural/6_Bed(3).jpg b/images/Furniture_and_Structures/Bed/Natural/6_Bed(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e3b51be3772178f3fbc9369f2b65caa655b7580 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/6_Bed(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a2505a66e36ddbef5ffdd215b92f207de680931cf81db8bd662d7a83a05ffd +size 7128 diff --git a/images/Furniture_and_Structures/Bed/Natural/6_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/6_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4773e2526746861d8d8c1166af4f496945648781 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/6_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982038459f9d169dfcae86545b953a2b29f34994e729c0c53e76c01208e75b4e +size 41490 diff --git a/images/Furniture_and_Structures/Bed/Natural/7_Bed(2)_Edited.jpg b/images/Furniture_and_Structures/Bed/Natural/7_Bed(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82999358c3dc4872413cba781f32cbd55bc15e84 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/7_Bed(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af81a1768ef7656bca8c99c7aefc38bb0d538275e26a2c801495b096f66a07d +size 8813 diff --git a/images/Furniture_and_Structures/Bed/Natural/7_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/7_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe30ce87242446aed98c55b26772e140f786ec47 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/7_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddddd4a329a21acc3040a518d8a32e00c0e83eb07ae6eadc89dc261dfeecd6a7 +size 66866 diff --git a/images/Furniture_and_Structures/Bed/Natural/8_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/8_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2066eec1514da679a5a1bca9d723e6813360ee0 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/8_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635cb4b9086ac359a83e26651864f3f4a56d7921f9f5bd784d756911036659cb +size 3060 diff --git a/images/Furniture_and_Structures/Bed/Natural/8_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/8_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f68c12e2bf4e613cec534ca9e5df12656ebab076 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/8_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dac761291c6485be26c35aed8826aef87c0e6d8fa9c39b4736a985aae094a4f +size 3028 diff --git a/images/Furniture_and_Structures/Bed/Natural/9_Bed(2).jpg b/images/Furniture_and_Structures/Bed/Natural/9_Bed(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..d10ae3977a257671067fac1d928989171dd2836d --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/9_Bed(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4028e68383fb9d32055227b66990bf8b5cab33c5ecffac10c3d38d30da0e64 +size 4217 diff --git a/images/Furniture_and_Structures/Bed/Natural/9_Bed(3).jpg b/images/Furniture_and_Structures/Bed/Natural/9_Bed(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c7164c2304b2f34cd73c739acb22ccf8051db9b --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/9_Bed(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c62b9b121784ba87771c4d19ae595c31b8b21ccd894ee8b60845d266dc68404 +size 4092 diff --git a/images/Furniture_and_Structures/Bed/Natural/9_Bed.jpg b/images/Furniture_and_Structures/Bed/Natural/9_Bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3115dd4b9997bc592c73b4d80e86869faa061a25 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Natural/9_Bed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad1c9e33934747cc1422c544978fa1f7c129ed271aaa92c20a3a432d1462be7 +size 32508 diff --git a/images/Furniture_and_Structures/Bed/Tactile/1.jpeg b/images/Furniture_and_Structures/Bed/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dea3af320444d20b9b5cf0a79252588b34c361e3 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e785f404246583a1c225f1959b0995b7523163173c13fb1ffbc695b9a1634ff4 +size 9673 diff --git a/images/Furniture_and_Structures/Bed/Tactile/10.jpeg b/images/Furniture_and_Structures/Bed/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..fdef0259ac9aac7716374ffae542fd9320183e33 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a868b10bd75acd3e8d515bf3ea87737ff2bfd94745510b96858134a8185bcaa8 +size 5486 diff --git a/images/Furniture_and_Structures/Bed/Tactile/11.jpeg b/images/Furniture_and_Structures/Bed/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7ae6fb1b5507eced08f2b40fd9d706a69ae26e3b --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5b2fec546ade9129cdf51beec820536b1ad1c527969c72fd97197015e90a0c +size 8355 diff --git a/images/Furniture_and_Structures/Bed/Tactile/12.jpeg b/images/Furniture_and_Structures/Bed/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f0c57fa9eb3acb8a1b55cc1ead88bd5febc42cc4 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55c78aba5c84921bc76aeae0a19f25811696421ef0097b933997f6371ee106f +size 35979 diff --git a/images/Furniture_and_Structures/Bed/Tactile/13.jpeg b/images/Furniture_and_Structures/Bed/Tactile/13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8ba72949b8ca37e9d97bd4b2cdb2bfb86ffe91a6 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2743748365e72e71e76aa086f5749aa3e3849176c9d749f01025cf65e8b2f907 +size 12982 diff --git a/images/Furniture_and_Structures/Bed/Tactile/14.jpeg b/images/Furniture_and_Structures/Bed/Tactile/14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..38037b5b52953d2fb7eefc3db3164d431c36ec25 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0608b00e0a5bc4d4013182258cf5e0fee06fb46be340c817891b6918fee410 +size 28256 diff --git a/images/Furniture_and_Structures/Bed/Tactile/2.jpeg b/images/Furniture_and_Structures/Bed/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..23f3456584d06ff5ba368e89f51b19149832286f --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30dddc95fc45def532e4c73a783f5ac34d5f69751e6290e37a6022fdc00d1d9 +size 12630 diff --git a/images/Furniture_and_Structures/Bed/Tactile/3.jpeg b/images/Furniture_and_Structures/Bed/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..af9e73e979ef4fe42a89606fdbaf545566f07c02 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e680727696cf14d911185d8ca6d9497ae1fbc32be833467bf26d18876ee230 +size 63273 diff --git a/images/Furniture_and_Structures/Bed/Tactile/4.jpeg b/images/Furniture_and_Structures/Bed/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1ceee60f1984647b290a035e23397a50b4eaabd1 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5e5180d5a79eb0638ac0dfd6e0643cb929145131747a07d295b152f0fe0571 +size 44695 diff --git a/images/Furniture_and_Structures/Bed/Tactile/4_refined.png b/images/Furniture_and_Structures/Bed/Tactile/4_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e3968a8dd223d00a086be57d63a5a1b5fade60 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/4_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a88c353656d09f5f9295d6a631904923344e7c7a67a3690412194586e48ffcc7 +size 555528 diff --git a/images/Furniture_and_Structures/Bed/Tactile/5.jpeg b/images/Furniture_and_Structures/Bed/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4cbbff043a259d72f785faeaa0ff8e5f9e587d3d --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc33223d61a2d37226b6ce515df19cb78b79ec24c7de93ed3e616d0e11f71db6 +size 25115 diff --git a/images/Furniture_and_Structures/Bed/Tactile/6.jpeg b/images/Furniture_and_Structures/Bed/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8f41dccd0f7a7ef65e7a78351bb4a80b35454037 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf441206249a3f44e243a9b9ba28dc743ddd82fada7cadee81de01ab945c8a9 +size 11588 diff --git a/images/Furniture_and_Structures/Bed/Tactile/7.jpeg b/images/Furniture_and_Structures/Bed/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f04b7be8ffbb86937a35cc80efae497d82576669 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68662545cf84e169b9c73e7fef1a002e4a3d0904a4de3b4112ee94dac89ac816 +size 9380 diff --git a/images/Furniture_and_Structures/Bed/Tactile/8.jpeg b/images/Furniture_and_Structures/Bed/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b98809dd974ce1901c24738b29d0ed4cd5bbc7cb --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d32cb7dba5f711b1c38fb07a7b22435639badf277ae36d558464daa4ac7ff3 +size 5329 diff --git a/images/Furniture_and_Structures/Bed/Tactile/9.jpeg b/images/Furniture_and_Structures/Bed/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0c386d756febad07b2c9b4903fe24901abbd5961 --- /dev/null +++ b/images/Furniture_and_Structures/Bed/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb71b588e6652335efb0a3bea5286391d6c81e1568f9d1a62f13327683f560d +size 6836 diff --git a/images/Furniture_and_Structures/Chair/Natural/10_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/10_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7817e893561577610882b37c475ba934bf0fd5f --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/10_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96395a1f6161763e78c70ea3ce377d6e2bb67d2ccde098c37079bbfb31689dc9 +size 56446 diff --git a/images/Furniture_and_Structures/Chair/Natural/10_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/10_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b561ac0d1e2c5a9c58c26dc182b105df2aeebdd9 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/10_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11bf0c6e62ce7bc31ff6081ca773b22f926a16e858bba84e6f3d8bfddb5a74b1 +size 90408 diff --git a/images/Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..57cf0a114ce01df20e8574f280b318e51c834a96 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d4113265eeae2ce4827fa6fb350e96ef4d54514ae8f5947fe4410d0ffd7f4d +size 154741 diff --git a/images/Furniture_and_Structures/Chair/Natural/11_Chair_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/11_Chair_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26d82c52fa83fb495353d6cb9913d7d893aebb3d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/11_Chair_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615ca2db3f2710b699a233368bcbc00dc1065f3cfc88b04a3415e2b8f563c8c5 +size 22304 diff --git a/images/Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..4deabaeba3c9d6fc280a97fa51b4e0b2faa66a1c --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf93b24f0c459e84462eb72bfbcc54b02eb9d9b8e3f736eb7660dd23092800bd +size 196629 diff --git a/images/Furniture_and_Structures/Chair/Natural/12_Chair_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/12_Chair_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79b77c6190b2d968ec1c082055d2b49b84f67115 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/12_Chair_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6e1bbf90f8c9f8fdbe3468c162e447437284f1447c2d774e3211dbc1361968 +size 10599 diff --git a/images/Furniture_and_Structures/Chair/Natural/1_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/1_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..0373fffda21c5fef0f815e171203850de529816d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/1_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbfcb732662b135fe3f1efa2374549d9e4ec1bed00470ebe5c72dc392b1287f +size 8914 diff --git a/images/Furniture_and_Structures/Chair/Natural/1_Chair(3).jpg b/images/Furniture_and_Structures/Chair/Natural/1_Chair(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..89c6454da2775504a3dd197d96cfa08004786be8 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/1_Chair(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76e2806584b57a3faa80337492b9a10efaacd335e23d3fbaf711c27ca75c8b3 +size 13502 diff --git a/images/Furniture_and_Structures/Chair/Natural/1_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/1_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da4e01efaaa89970cc8ee45fabcaf21a312dc13d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/1_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b55d45ee76003b7f469ee63cf2de8071c20a5da3c936060a8c514cc0a0b7fa6 +size 9631 diff --git a/images/Furniture_and_Structures/Chair/Natural/2_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/2_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aebff048dd1012f511ed8221557fb14956ef743 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/2_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e337f0787d16f747ec780d8f4fa616bedacb4a8bd2805960b0b3d46e0eb516 +size 91046 diff --git a/images/Furniture_and_Structures/Chair/Natural/2_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/2_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50b2ea29fef6a8342c384679b1e5e9765d6739a2 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/2_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4683c9883a13246454a0bd063d363aa3153a053b3902c484062a32c5c0ae13 +size 114942 diff --git a/images/Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..84862dad2003958e9534c2c73af006e13d340319 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d05b50c831a44212a3708e3253e1925dbb1070fb02a4a5ebd9b955a66a053b +size 37960 diff --git a/images/Furniture_and_Structures/Chair/Natural/3_Chair_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/3_Chair_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3664b0c66e7aac09aff44b3dd6c44b7ff14e07a7 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/3_Chair_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b62474ca50ce3a6228f4ce9654e7ca9f421598d1f76ef07297ddae0c6db9571 +size 10646 diff --git a/images/Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c2c198cda2cd9667c10ba3506c2ebcc24d9808 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80e43fdb044cf4e435b1122112e8e5f41afa0a313c3b332d07d907140130fcd +size 16328 diff --git a/images/Furniture_and_Structures/Chair/Natural/4_Chair(3)_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/4_Chair(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..399ab2f01183bf377aa31431640dbff14355cb0b --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/4_Chair(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dde04feee5ce2e5e104cff546e3ae9d9f33f63ed8b864a34a83214676bf0fb2 +size 15735 diff --git a/images/Furniture_and_Structures/Chair/Natural/4_Chair_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/4_Chair_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79b77c6190b2d968ec1c082055d2b49b84f67115 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/4_Chair_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6e1bbf90f8c9f8fdbe3468c162e447437284f1447c2d774e3211dbc1361968 +size 10599 diff --git a/images/Furniture_and_Structures/Chair/Natural/5_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/5_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51138115d1d1c63505964de0d229742b0c074a5d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/5_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2bd484df78a8ecdaaaa82dbab98b4c7d8867d8c17f09b9722b3cfe9ca7ccc51 +size 293617 diff --git a/images/Furniture_and_Structures/Chair/Natural/6_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/6_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fedc731bc990273a29cc4bafd93a8b9d1e00490 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/6_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4015d5813bb7d8afeffacbc73c82ab7555d53b00e97bbaa571cfa5bd62c1ce +size 98400 diff --git a/images/Furniture_and_Structures/Chair/Natural/6_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/6_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57c7d2d0c54e5520c1685e61c8ecb8a3d7f903ff --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/6_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4849e0d6a69e7a59c55367b3bba22eaa9b66f2735e3671aed874e2b1c9d1cde +size 289791 diff --git a/images/Furniture_and_Structures/Chair/Natural/7_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/7_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4efed4c4ee6924f1368c3e80baec91014be2a48d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/7_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aac7b20c78c9866a7b11a35c7de85e441333f3ffd31f36466da4c5f3336d179 +size 373559 diff --git a/images/Furniture_and_Structures/Chair/Natural/8_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/8_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..63be8ceb5c1c6c6dd364aa9653d47f386c0ef3ba --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/8_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abce8e70ec2bc5f408de3f1d10764c765c803ff64d5eb68a91111550f5f5e89 +size 47432 diff --git a/images/Furniture_and_Structures/Chair/Natural/8_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/8_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7eeb9fb636d8abbaf482c99fc79440a7fa5d88cf --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/8_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea68eda2ef6a8db8207f5862248abccb9e534a016ec451fb18dfe3ac97739f7 +size 36890 diff --git a/images/Furniture_and_Structures/Chair/Natural/9_Chair(2).jpg b/images/Furniture_and_Structures/Chair/Natural/9_Chair(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..72a366396a2da6bd2864da0765269c985f0a7bb6 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/9_Chair(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddbd323ba7cc2f35c5179466278732586d14431dcdfaf90bb5c9783da600805 +size 38201 diff --git a/images/Furniture_and_Structures/Chair/Natural/9_Chair(3).jpg b/images/Furniture_and_Structures/Chair/Natural/9_Chair(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..88937aa42182557fdadd03572214cc2f7815b384 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/9_Chair(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c2bccbcb41950e41147972fe236a147b5f7fe6786344692544548d4b3a6298 +size 11365 diff --git a/images/Furniture_and_Structures/Chair/Natural/9_Chair(5)_Edited.jpg b/images/Furniture_and_Structures/Chair/Natural/9_Chair(5)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14e8ab3c345efa09812518eb6f0a2cb89494e2e7 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/9_Chair(5)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899097326ce3ef9fd760bf1ef16bcfabfa0f79e38599194fc251d50bcdb43c81 +size 21440 diff --git a/images/Furniture_and_Structures/Chair/Natural/9_Chair.jpg b/images/Furniture_and_Structures/Chair/Natural/9_Chair.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8344d1d007592808ed8fca864a00abbdb79499d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/9_Chair.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8d01017eb13dd5769d687a20fa4994f745d71969b0c192bff040e8bd2bb36f +size 78584 diff --git a/images/Furniture_and_Structures/Chair/Natural/9_Chair_4.png b/images/Furniture_and_Structures/Chair/Natural/9_Chair_4.png new file mode 100644 index 0000000000000000000000000000000000000000..427d28c34cf8fcdff5fc443d40043cfa1aff2e60 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Natural/9_Chair_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01655e52cb9ab91e82c1093dbcf98602925ba4fa3e2369971b05033abca106c1 +size 304564 diff --git a/images/Furniture_and_Structures/Chair/Tactile/1.jpg b/images/Furniture_and_Structures/Chair/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49ea990ffceb1594fcf02223a379b37f1ca56fc2 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16e03aa9de9f501afb523743783825b2ae484851f69a329a1e9bd370fd649d5 +size 25748 diff --git a/images/Furniture_and_Structures/Chair/Tactile/10.jpg b/images/Furniture_and_Structures/Chair/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4128852794320e6e9691410361d9ebe8875eb26 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3012931c3e746e58db8dd25bbfb340e10a7e1f8d4ab1c9ff43887778f838b47 +size 294905 diff --git a/images/Furniture_and_Structures/Chair/Tactile/11.jpg b/images/Furniture_and_Structures/Chair/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbcb37fa26d3489bee73d173a75ab876d4d47278 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07203cb4ce6b0c5bf371d2fc9c8a3c7ca2fbea839b6ed5ece9c86acb223cb1b2 +size 357474 diff --git a/images/Furniture_and_Structures/Chair/Tactile/12.png b/images/Furniture_and_Structures/Chair/Tactile/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d4c3fe622ef59f22106be6d987a73e4543308055 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955a1864ba55df204ab9620ff24252a6735cd7b2bff91dfd6ccd31110f495541 +size 700166 diff --git a/images/Furniture_and_Structures/Chair/Tactile/2.jpg b/images/Furniture_and_Structures/Chair/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..111b5d6c37ac5e56d1c0b759cdc5f458a31031a3 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c033b3ec5c71ab90cb67f0c87dd4093c8d55a5904b38bcf66b4811437939a2b +size 37289 diff --git a/images/Furniture_and_Structures/Chair/Tactile/3.jpg b/images/Furniture_and_Structures/Chair/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56547d18dc96954d430ee5d916e456c843a27aa6 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ed98e57bd55919c17498c7308a3864ade4c81ea2a99db7eece0dc6507f3864 +size 76495 diff --git a/images/Furniture_and_Structures/Chair/Tactile/4.png b/images/Furniture_and_Structures/Chair/Tactile/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e8eb807e44fd4934293eea972436a02a83262509 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b90fc122db3c3318465e8d63692ba1bc6d1c19d0609ae8b7724351304a45478 +size 1626163 diff --git a/images/Furniture_and_Structures/Chair/Tactile/5.jpg b/images/Furniture_and_Structures/Chair/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ad716e32985068c259680c0cf90cce44e9ce361 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8458beca87fbe5d55476a8cca68873ac574593e9fa3303783e8aeaa6e5969e +size 129868 diff --git a/images/Furniture_and_Structures/Chair/Tactile/6.jpg b/images/Furniture_and_Structures/Chair/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afd76327545aabf3a28743d31c42e650c547c60d --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0893674b0a44a61b5e73801d06f0578da02c429cb5aecc1997cce2f94de852 +size 154566 diff --git a/images/Furniture_and_Structures/Chair/Tactile/7.jpg b/images/Furniture_and_Structures/Chair/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36f95498659232b08179b80a6dfa81143aff9e22 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec9cf5f26bef95947546e39c11ffade6edc5f029013c81b8c475f952450e156 +size 243615 diff --git a/images/Furniture_and_Structures/Chair/Tactile/8.jpg b/images/Furniture_and_Structures/Chair/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52a107e6b1bd470e1966386027ba4c6bea77dd8c --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c7c8c12336cdd7c61570b6140a0133a6d0226f688fb539a3b496c1a318bb20 +size 127065 diff --git a/images/Furniture_and_Structures/Chair/Tactile/9.jpg b/images/Furniture_and_Structures/Chair/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3a561c99088563a5d757107613604bb38337616 --- /dev/null +++ b/images/Furniture_and_Structures/Chair/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50a49a229cf15d1a5c73c3646b133aaf4b50a330a24c67e4029dcc343d09fa9 +size 280432 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_1.jpg b/images/Furniture_and_Structures/Door/Natural/Door_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b63a58a09f8d74d5a9e6d3e56686c1c6016e425 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89934fd8d81e0d4b4fd4fa8cdb57315b689f8390c4e23c26fe6fa8de6ba7153 +size 70481 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_10.jpg b/images/Furniture_and_Structures/Door/Natural/Door_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55c3611bec70e4b950e56ebee4f568d671ab1fcd --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0218c4a8a621da0c534e3cdca2e60aa05dfbb033adcae1a670caa4b250e6fe15 +size 11461 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_11.jpg b/images/Furniture_and_Structures/Door/Natural/Door_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b88283032232c84af2ca4da28ceeff412ea5b4d --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b131a0a560a2581375d3c0851180a8d2de6c9dc146b4a71a6282562cd03f401 +size 5589 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_12.jpg b/images/Furniture_and_Structures/Door/Natural/Door_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..094602cf477972f351f94a2addf9d64a1c6b1dfc --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05df78e0dcfacfb8379fe91ebad762eadfaaae4aa32ba25d42c1db114c6dbcf6 +size 41390 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_13.jpeg b/images/Furniture_and_Structures/Door/Natural/Door_13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..de4028089b81023d44b2a805cc5bbf6d33b25c9a --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290c53e6c2e7a9625cb3b03cf69572579f736812dffcb2896730ad4faf573c2f +size 3775 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_14.jpg b/images/Furniture_and_Structures/Door/Natural/Door_14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b266fcfa9116141da01a4cd78276b9d6d66f6b82 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3936103df6a81dbcf78b78facbabde549a29b53173ba9ccee631a6f28e66f88 +size 10089 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_2.jpg b/images/Furniture_and_Structures/Door/Natural/Door_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..859c4caf0f7a56b52a6a60738044970dc5f80e9a --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703d1ffb38429c38e4e63a352416119ce2841e21f2c36ec0897d06b4ed45f55f +size 86614 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_3.jpg b/images/Furniture_and_Structures/Door/Natural/Door_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b63a58a09f8d74d5a9e6d3e56686c1c6016e425 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89934fd8d81e0d4b4fd4fa8cdb57315b689f8390c4e23c26fe6fa8de6ba7153 +size 70481 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_4.jpg b/images/Furniture_and_Structures/Door/Natural/Door_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9286b7247e60de7d5e051ffb184f0bb3588e2382 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4daa9a40a9a71e50342edaa4ef59d3d299dafc641f3ebb3659816168c4b96a2a +size 413247 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_5.jpg b/images/Furniture_and_Structures/Door/Natural/Door_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af6966a69834ba483090810ad95dd944e642db2e --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb6a61a8499c75f8bf93c20c3405d10e15bd70d7df0e901b31e9138dac9088d +size 540715 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_6.jpg b/images/Furniture_and_Structures/Door/Natural/Door_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e72ccc86dc7a3dad697c9eb8fa08dc82c2a08047 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c8016e42f4fa74784ac8d8285b8317d2bd04e5bd9b178273d6fef0f5591026 +size 684916 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_7.jpg b/images/Furniture_and_Structures/Door/Natural/Door_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..386e2d107aa78d4c68d5096f3a34ef78b77f1a2a --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94be83c05c021bcdfaa95152e8cf3a2f362e8853422c51aaa46979a6888afc8 +size 132715 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_8.jpg b/images/Furniture_and_Structures/Door/Natural/Door_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cfa961d6ce434a4b24ba41b3f1bb0bca65f05a9 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b40c5fabf84449494f506bcb45ede33fed3dbfca65e70a47fa2d1b43cbbe634 +size 25723 diff --git a/images/Furniture_and_Structures/Door/Natural/Door_9.jpg b/images/Furniture_and_Structures/Door/Natural/Door_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f72502d8d3e15a7dd555e37a868fdead1ffa8e4 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Natural/Door_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7cd81cdcd2bfda94dcfe21dd7e45f57cfa2db32516a856bd82447bcce78ef7 +size 338665 diff --git a/images/Furniture_and_Structures/Door/Tactile/1.jpg b/images/Furniture_and_Structures/Door/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cba7b615e79e68dc240340eb0d5326747feb8d57 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a091c86cbd46d4a19f1f7d13d37f3c59945bf7673c5238d92a9b1ec7a5f2c2 +size 47244 diff --git a/images/Furniture_and_Structures/Door/Tactile/10.jpg b/images/Furniture_and_Structures/Door/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be546c5699676b80e13850916fdc0a04e6548a2a --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ae3fbf855aa0bd7276059dc029b73b378db76b27c95bfc957d0588162db5b3 +size 105137 diff --git a/images/Furniture_and_Structures/Door/Tactile/11.jpg b/images/Furniture_and_Structures/Door/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fb4fe699fca0a704e8c536bff28bc344c1d3585 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ed14da890c3fc1677d54f653df3ec6733f989bd4be290d8c3b7793e290187e +size 31410 diff --git a/images/Furniture_and_Structures/Door/Tactile/12.jpg b/images/Furniture_and_Structures/Door/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61dd0d7dafe7c2b3ff0da37adae5ae83440f48cd --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8087d9532fe7748d6f6336d81a39ab14ee48d98ce78cc41eef0fba89f24783b7 +size 47806 diff --git a/images/Furniture_and_Structures/Door/Tactile/13.jpg b/images/Furniture_and_Structures/Door/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fd450ebd8039e93452cab3562b0c5d479a08953 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa75297d305cbce8e9e2aad675928b888ba58854bd112286ad9348a832a35d88 +size 37098 diff --git a/images/Furniture_and_Structures/Door/Tactile/2.jpg b/images/Furniture_and_Structures/Door/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b1ab5f5c3e7385c67a9e76202d886a9f1589f9e --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61ab3975e606f19aba96fa3135fde035c8c03e40f5c77adb052e7fef5ff0b41 +size 13980 diff --git a/images/Furniture_and_Structures/Door/Tactile/3.png b/images/Furniture_and_Structures/Door/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ea732c13c21b1bffcccae27c5e4b4917418089d2 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81dfbfdbcf9d5f25ed947bbd597df9a477938348a6706903a2cdcb6266d506dc +size 1337681 diff --git a/images/Furniture_and_Structures/Door/Tactile/4.jpg b/images/Furniture_and_Structures/Door/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38e60265ff36fc8eb46c14112d7c6a97f8079b48 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d67ccfe9cd9be60afc382b7029cc70b26cf23a52e642c2d8aa24ec1c97c9eea +size 8016 diff --git a/images/Furniture_and_Structures/Door/Tactile/5.png b/images/Furniture_and_Structures/Door/Tactile/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d2ee79de3870ea17e1c280e50ff8d6fc1b530b39 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2301fe187336dac7ba088108ada5e9458e4cf451186739b6b4b7cb5af11e3e81 +size 4873 diff --git a/images/Furniture_and_Structures/Door/Tactile/6.jpg b/images/Furniture_and_Structures/Door/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78db018a8ca8f16c5887ed9c534b4c8dff2ad539 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510b9fec46f83bf075008c034f31405a272ee7e2b04280868772fcf1d5720d1d +size 877545 diff --git a/images/Furniture_and_Structures/Door/Tactile/7.jpg b/images/Furniture_and_Structures/Door/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71046d7098529a5ae4f33069a9ddfcfbec339f89 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde8b2dd6c393e4a2e2f204166f4a6fdc062bc995b6abd49358cd2ac0f903837 +size 9994 diff --git a/images/Furniture_and_Structures/Door/Tactile/8.jpg b/images/Furniture_and_Structures/Door/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9cc2a5d9f67c3c43d9f2abda0db330b56f7aba1 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2ebe55125ba98fab662ae012a6c35d1f8bc483451cba3f4c0b261289eafb27 +size 2211 diff --git a/images/Furniture_and_Structures/Door/Tactile/9.jpg b/images/Furniture_and_Structures/Door/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e2de1ed52a581fa4b6249d3b329be8cbe1a0907 --- /dev/null +++ b/images/Furniture_and_Structures/Door/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3356cad6e5886e350d052a91675f861eda8ba1b8b5d786c9fa4e5914ab8999 +size 24971 diff --git a/images/Furniture_and_Structures/Hut/Natural/10_Hut.jpeg b/images/Furniture_and_Structures/Hut/Natural/10_Hut.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9e71978b221e6b208c481d0b599eefe9aefe28d7 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/10_Hut.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9f046a533032df08082d18b3d73de3c9a516c97eb4d05809394bd54e98b4e1 +size 246059 diff --git a/images/Furniture_and_Structures/Hut/Natural/1_Hut.png b/images/Furniture_and_Structures/Hut/Natural/1_Hut.png new file mode 100644 index 0000000000000000000000000000000000000000..4f6738b799f7569e63bc54a09e6abc36157df335 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/1_Hut.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7843eb5f083285576f413ce0b05c6c7ac2d1357e732a88b9efe4dff776bc1e3 +size 465882 diff --git a/images/Furniture_and_Structures/Hut/Natural/2_Hut.png b/images/Furniture_and_Structures/Hut/Natural/2_Hut.png new file mode 100644 index 0000000000000000000000000000000000000000..d17244ba9157134cc2f7094b3f90598e05397343 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/2_Hut.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe0a8cafe8db66cf460c00bffbb698e8803ab7f91e8cae4a048c01e03226f75 +size 248599 diff --git a/images/Furniture_and_Structures/Hut/Natural/3_Hut.jpeg b/images/Furniture_and_Structures/Hut/Natural/3_Hut.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ddbb9d0954c6754e39a54248b3304ee5d70dfbaf --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/3_Hut.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fb7bcd448f4bf89484b73be7541396b10b2ef68d466a46b677a52bb78f9f6b +size 243780 diff --git a/images/Furniture_and_Structures/Hut/Natural/4_Hut.jpeg b/images/Furniture_and_Structures/Hut/Natural/4_Hut.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..02d38e2244ff9f06803b289248995e51d3296527 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/4_Hut.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50f00f4ea60fae53a493bb5881b4d41717757326ac2e62dedfa9d4f5eb281b2 +size 224269 diff --git a/images/Furniture_and_Structures/Hut/Natural/5_Hut.png b/images/Furniture_and_Structures/Hut/Natural/5_Hut.png new file mode 100644 index 0000000000000000000000000000000000000000..0342a8e1f20399776df9e0f9e92ea9735d6bf15d --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/5_Hut.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087e97c9d2fc318dacf07fd401b4fe211797a085f8d982ad9069f1c643825a15 +size 500966 diff --git a/images/Furniture_and_Structures/Hut/Natural/6_Hut.jpeg b/images/Furniture_and_Structures/Hut/Natural/6_Hut.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1449a06278a37175049f1fb5ac3d1530d100c8db --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/6_Hut.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9267fb44141d87452a786bd7f5b8694fda3cf9ea50b16934e9e9bf8f274364a5 +size 206248 diff --git a/images/Furniture_and_Structures/Hut/Natural/7_Hut.png b/images/Furniture_and_Structures/Hut/Natural/7_Hut.png new file mode 100644 index 0000000000000000000000000000000000000000..fbf5037ea57e0188ba0a5a0d18454c7c7f64f38a --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/7_Hut.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915a136010b4cf43c89df6c1f953bbfe6c5f9ebb1de5e8e0dbd3c07c167c00d1 +size 562379 diff --git a/images/Furniture_and_Structures/Hut/Natural/8_Hut.jpeg b/images/Furniture_and_Structures/Hut/Natural/8_Hut.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a41aa16c71c6fcc53b2741231ac3b16f4da70cc8 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/8_Hut.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89df38b37013fc039cdf13c4c6d23cc67e340b911aa153ff79b977167878913 +size 218053 diff --git a/images/Furniture_and_Structures/Hut/Natural/9_Hut.jpeg b/images/Furniture_and_Structures/Hut/Natural/9_Hut.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dad0669f21b6099dbe0a5517980a027d4c38a59b --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Natural/9_Hut.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca6d1b83e1068627c882d4a4e5625fe79b7108db1a47f32138d04915f39c96b +size 200763 diff --git a/images/Furniture_and_Structures/Hut/Tactile/1.jpg b/images/Furniture_and_Structures/Hut/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b61dd5a7d0c429e1d6e7828257eb347a491d8e78 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12d331007de371a10387b8223aa4615fe02a8422ee312e2139205bb5ac8ea18 +size 157188 diff --git a/images/Furniture_and_Structures/Hut/Tactile/10.jpg b/images/Furniture_and_Structures/Hut/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5194485bd2edcdb04ff10674cca309cb446a455 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7040e9fdb0d8917df9f5b617ce23f2309dc8d5fc531fa62887a98c1fd7d64aa +size 67962 diff --git a/images/Furniture_and_Structures/Hut/Tactile/2.png b/images/Furniture_and_Structures/Hut/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d95d3f74df4651e3995aae81782b082027d8e05 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41b2c604a10ad7a44cd9297edc0a9e838ef736d7e70f27a8e35298b31ff136b +size 2769253 diff --git a/images/Furniture_and_Structures/Hut/Tactile/3.jpg b/images/Furniture_and_Structures/Hut/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc2ae7036d2ff1586ba8e4aeb5761a91d8057215 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3010420ded69b44154a89712c755003b63a77807a7f2144d9a4d17bb765bd9 +size 15503 diff --git a/images/Furniture_and_Structures/Hut/Tactile/4.jpg b/images/Furniture_and_Structures/Hut/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2a4dd75464d977b0c487af1fd3a5d98166f50b5 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f92021dea90e7e97814caac025011f583ee30ca1ad1f50ebe6db5451f70c74 +size 34106 diff --git a/images/Furniture_and_Structures/Hut/Tactile/5.jpg b/images/Furniture_and_Structures/Hut/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4603e515855942950a502c3282f5b9b8b76b9bda --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0f89611c15af3d80c2a2bef7a7cb189a8683fb2738f17cb404daacbca46f5c +size 30318 diff --git a/images/Furniture_and_Structures/Hut/Tactile/6.jpg b/images/Furniture_and_Structures/Hut/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfd2ef40eb1119b3d9a3aed469f7a6983c13e075 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3730a48a91980323df4b70341597a680683e2a975f39e0bf34ea01800b510f +size 23291 diff --git a/images/Furniture_and_Structures/Hut/Tactile/7.jpg b/images/Furniture_and_Structures/Hut/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1e7215c6ae56842ddfb67f01dc8e860b95e2058 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffaeef8f67a2db6c9a368d5eadc0a768b2113c9f056c3aaacb8fb96862ab68f0 +size 9422 diff --git a/images/Furniture_and_Structures/Hut/Tactile/8.jpg b/images/Furniture_and_Structures/Hut/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f026b021484274bb14d60879a8191367d2b58ad --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c654fe01268794ddbd6f6353ec7349e4374534fd93e772b0d97edf738ff7bf02 +size 30581 diff --git a/images/Furniture_and_Structures/Hut/Tactile/9.jpg b/images/Furniture_and_Structures/Hut/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18228bcd769d82e2128449749d7ec4275cb1a730 --- /dev/null +++ b/images/Furniture_and_Structures/Hut/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55241497fbd846b4b5dfd64599d38fad1510dc4af0d8481b87828f2c7fa7348 +size 143419 diff --git a/images/Furniture_and_Structures/Lamp/Natural/1.jpg b/images/Furniture_and_Structures/Lamp/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20817e117b3c7bfbfd4c4e48c3d05afeb5f4cfd8 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc32739b82b08c86a746be14316f9a78276610f28b097a547e0972ce01ed6d31 +size 235641 diff --git a/images/Furniture_and_Structures/Lamp/Natural/10.png b/images/Furniture_and_Structures/Lamp/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..96f6feeccc254c03db48f28bddafe22e86bd03e2 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a422c9b4007b3882843b1309b818c3b93de7e5bf896236df7f4d307ae1ea00 +size 209181 diff --git a/images/Furniture_and_Structures/Lamp/Natural/10_2.jpg b/images/Furniture_and_Structures/Lamp/Natural/10_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c3b68716ba5b069eefdee7ae958f300009f134a --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/10_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bf2a0f11b209cdf7f7d6d80b80688ee77ab00c40dd2b3a69498dffc246b00e +size 5778 diff --git a/images/Furniture_and_Structures/Lamp/Natural/2.jpg b/images/Furniture_and_Structures/Lamp/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84154877e4d82427a5d4f4f4e776238ae662fbe3 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7303e5645df08c2b2e907739e9efa003e3e0ecb620072b5646d8964210ead1a9 +size 100338 diff --git a/images/Furniture_and_Structures/Lamp/Natural/2_Lamp(3).jpg b/images/Furniture_and_Structures/Lamp/Natural/2_Lamp(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..e74b010f4e982805e7cfe027c96b956e5ccebbab --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/2_Lamp(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae45acf79788440bc6a52e65933fd18d6c952f9c41f7cd4a5876fa3edc595a7 +size 17267 diff --git a/images/Furniture_and_Structures/Lamp/Natural/3.jpg b/images/Furniture_and_Structures/Lamp/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4038ef73ef130925e046e1013b4172ada1e2bb6 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0a89e9ca80ee602b13d388afae801e7b49b6a4141b78ddefe6a430a3c5d163 +size 5302 diff --git a/images/Furniture_and_Structures/Lamp/Natural/4.jpg b/images/Furniture_and_Structures/Lamp/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c53b91dbcf9738084c9d7abfb62e2d04b039d31 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64572c97f66d9168b66849baacd48ca62f179c1c402dcc077e05935b8d88d72 +size 1995 diff --git a/images/Furniture_and_Structures/Lamp/Natural/5.jpg b/images/Furniture_and_Structures/Lamp/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f81553a07f7d540031972c143f9568b22c4d3fb3 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45ff758bb5dc7fde82c671b257a5847a173637665aebfe11ea30bb66ae7dce1 +size 11738 diff --git a/images/Furniture_and_Structures/Lamp/Natural/6.png b/images/Furniture_and_Structures/Lamp/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..23e77d4a0a87e266aff4e278a578ede7da9bb7f6 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbcbe7f9a5629f0231b26615a2c9a599b7973b7c0c8001afec7ccee04bcde4a4 +size 65819 diff --git a/images/Furniture_and_Structures/Lamp/Natural/6_2.jpg b/images/Furniture_and_Structures/Lamp/Natural/6_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c3b131ddbdc15d483975f1381deb81e1beb19c1 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/6_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556f36e84a7151fb1240ac7012ca3e9230b9767e9b532fa6a267f5539a588111 +size 52405 diff --git a/images/Furniture_and_Structures/Lamp/Natural/7.jpg b/images/Furniture_and_Structures/Lamp/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b99b43b3fd2a6de3a85f74d2064d92f049736a40 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea2765ec68d1d6a7008c3bf5accf5a49464220d4bede46b0527824e606e45e1 +size 35243 diff --git a/images/Furniture_and_Structures/Lamp/Natural/7_2.jpg b/images/Furniture_and_Structures/Lamp/Natural/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3e683d9b135b3925f4e48bb65611d543f20cb55 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/7_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef13c3007f9eb60f0a3101c60ffdd05e229774c86c909af393dd9e48c0feb8e9 +size 22817 diff --git a/images/Furniture_and_Structures/Lamp/Natural/7_refined.jpg b/images/Furniture_and_Structures/Lamp/Natural/7_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b99b43b3fd2a6de3a85f74d2064d92f049736a40 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/7_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea2765ec68d1d6a7008c3bf5accf5a49464220d4bede46b0527824e606e45e1 +size 35243 diff --git a/images/Furniture_and_Structures/Lamp/Natural/8.jpg b/images/Furniture_and_Structures/Lamp/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6cd291a083bda415c2b024df7869a8e3e6925ac --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5737adc211085e379c5178a0d91e31ad43c3b1269a2a4e80db5be426d1d7b804 +size 18731 diff --git a/images/Furniture_and_Structures/Lamp/Natural/9.jpg b/images/Furniture_and_Structures/Lamp/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d840ee1b717cdc63cbd5034fa2008c3c725be739 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63bf5bdbc8e24e01f02e4c10f17b5dcf47ccbf1323563f1e1501dc605fb74e6 +size 8032 diff --git a/images/Furniture_and_Structures/Lamp/Natural/9_2.jpg b/images/Furniture_and_Structures/Lamp/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfb96b06a4be2cd1709e0f2e089ec6e6f0f74ed3 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d171564785c0b3fcabd258834247e817dbc1e9fa49dc02f685b55e13ce4d556f +size 11489 diff --git a/images/Furniture_and_Structures/Lamp/Natural/9_3.jpg b/images/Furniture_and_Structures/Lamp/Natural/9_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5279f325edb4baee674cbdba846fe3a17dcfadf --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Natural/9_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7de7a22f74c36db1d891d9530857b1c9f0dac2051dfd6cfdb064e8b797446d4 +size 22519 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/1.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..433c3a3c003bd92504132f99d550c2fc4b56eeb1 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c6d1726bedd6b2378188c80fe3fa1f5884eca3479c2fc3795fe2688cb8f50a +size 4210 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/10.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e1cfaf94a7d0c579c85a8cb86921a21b0ebdac5b --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a7bd49855957b26452537df08243b4e2e4502a60f521d50f91c2bb75f94f5b +size 2812 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/2.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ee15dc8a75fd440ca55a6b472035c6808309b581 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840850bae8ba75857b177a988c931585a1415ef22c593f8d7f0fe63cc229f361 +size 11402 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/3.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..027819ccbb14f5fb2c053650af4cc55abaac8412 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543e6804dedc65e2e5938c4ca3a55f00fdcc4ff4cf7ab1580226f4158d6db75b +size 3672 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/4.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..17e1feb8ba40037da4a76b546139225d9b1fa4a8 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8059892e70d64a3b42c86e787a001d1f5146dedf366d0576321e47c35a96b217 +size 4100 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/5.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9dc28648036a101e1ce981314f7375efb859b193 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8427ef8135e93d20a5217836edef32eb8df5a67f8c61d885dd8d65d391be5da8 +size 3568 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/6.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bc7956e5616d8000bac5ebed5741e0cb7a66a437 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4466f32c45f17507e207ec3811b09234c563578fadc7d0c9f9dcb64c65273a9 +size 4876 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/7.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0c77dd28dfa739cfd36279cbffe1dfd21b052b1d --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864254cd7d5d8e12dfbec6fd1c6e1b663f6ee243d2b21425c93606c1b9d9fd96 +size 15104 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/7_refined.png b/images/Furniture_and_Structures/Lamp/Tactile/7_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a36df6827833a1fa84102ebd26495d07a05f2d --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/7_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299bc89eac79da0b7b845327f6f83173345942e701e46f2162a8b79572212715 +size 613677 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/8.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..aa9c7830c55289327694e7ed3971073e0cb8c000 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b387a08fad1adcdd063f32ab1e38dfd35372ce88c106618043ba33e292a816e4 +size 12050 diff --git a/images/Furniture_and_Structures/Lamp/Tactile/9.jpeg b/images/Furniture_and_Structures/Lamp/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c8b1f659c954e55e8c4d43419caeceda149d58b4 --- /dev/null +++ b/images/Furniture_and_Structures/Lamp/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c7f85e3318b1b42b20a2015abb3ce9d32bbd29a2001277de8ffb7f66d90622 +size 3748 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c42f9e7332bb78c39c9596bdee933f212cd2bc4f --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1692c61fc938df07ae399b7da0fccf6d367531f06454287486dc77bdaf761a63 +size 75274 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7e61f7e0565efc50945113daec9efd0c9e7d5d97 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb3884f4c43995f97e3414afb20211028b9c1cffae7e6a03de4393be8beae3 +size 99747 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..81907952e3c991f19a971a497762fc4bac6315a1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64cf5a8ca431ca0bc5a42d00ed6d3edfec7870bcb2580454fdb2b4379646ea7e +size 41771 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg b/images/Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg new file mode 100644 index 0000000000000000000000000000000000000000..342cff4ae627dcfd80ff15abd847261c0b6910b3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333c581cfa1d7894b2c12cb34b4abf518554e498cdbe329ab7b5cce33ec5738a +size 76729 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b1e6d184406b65576e854a5be727076debbfa82a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb8cbcc55446c588ec93831f883dc8588a74b6be86753103528f5571aba71fa +size 32721 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..31d7ae1bce8219b6291a36e247d1c02269c1b13d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3dde58bcde4d235ee48eee1c48e8b2bcf2446a52dc9a8f3e4ca6e89feb2ed3 +size 34227 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..82c0dc59fc1604534a81441573912dffda1fc4a3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68122af14a9e7935bf89db5aa4600228d5a3265cad1c950ae43b82f6ab6df045 +size 75429 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..82c0dc59fc1604534a81441573912dffda1fc4a3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68122af14a9e7935bf89db5aa4600228d5a3265cad1c950ae43b82f6ab6df045 +size 75429 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..82c0dc59fc1604534a81441573912dffda1fc4a3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68122af14a9e7935bf89db5aa4600228d5a3265cad1c950ae43b82f6ab6df045 +size 75429 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dbeacc6ef2f99c1024519a580c24ff27be14d8ba --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ca8a9ead933db6170ee32b809e7fc774301a096a10166d864ba46095721704 +size 235936 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f3c621e15ff6ebdd69a293581bf04e637ece9243 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d071d9254fb1a706c6a03acbbaa34e5d585c6152d3f6b57f8b062d1c7d7d4128 +size 121837 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg b/images/Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..41c24d20dd8339ae06ae4f6e9ab710defa6f5b5b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495e82a51b126f24c4aed5d971a1979d619cdbf351a2ee74fda0ddf3e154294c +size 70988 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89d7dc18192a4a4081b331f52960622fc635f10c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce7176a2acb14e355fe2990ba2547e57772e2c343ea1e1397f3091e5ea30848 +size 15007 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d07cd601991ed035f4a55f9ecc6948c9cf1b19e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0c36783fd199215432090802a32eccc6652f9a24045d127c119a35d045e254 +size 12706 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b51e85f16fa096a8253aad81e002fe3f7b658ec --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7b85973858ce4088ad3a2e92ee8d398c683791ddd1f5e9ba17f8d49c0e8581 +size 10200 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dad3070623f69839da2eae7b3edde558b03c8b8c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1737aa8f3147afb6333ae93b022ab333ed67461baa3eafa108a04e73e828993d +size 11197 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebc73d871ebafbbc03ef21efc9665bf48e7fd2f0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac153ee20a3943b4324bb719f27004736717770f51fd836a0cd30211a52eb74 +size 14347 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f27931446502c67e1ddacbdf454901f940ae74c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d77bdb199b3b45c3054e15693a147e0ad59efc7adbd2972342fbcefc59a0fa2 +size 54012 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e32298aa7a4b1ee8793c15861d7589a286b048e8 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb9d1b108d17a2d88936658e5256fa08b5b5ad3e9888d7fea1718ef7ecf5d27 +size 20707 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdba7dde2083469db2ac55b6068cb342ba2bc4fd --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ce39532412e5fee5173f79ad431c45e99c9349a0cbcdbf00111ef6183a9ff9 +size 20956 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a482271ab38272dde5d2c19d8438593c49fa8d4c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f35712de0aa47efb1785d8a2aa53d6cad7855024fe258ac1c7b15e0d88aec5 +size 20799 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0531fb28475ce6ace06a8c8c1f9af1a91ddbcb94 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99b3d2d138d9e8fcae296fe00fc44b222b13d593cdfd3f1024d4018340238c6 +size 69284 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fe2d624a53eb7d01ce3377c0d8c78e9946b80eb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597d08a3585509ecd79f1db8cc8f05b8504b579f4351cc980d4920f497e9acaf +size 9031 diff --git a/images/Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg b/images/Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..176dc31bbd7f459a6a99f7985e533684850f8ecb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b77f5023f357eaee0d4cb70c51fd2e221832c83fbbecb9d6198751a12a65944e +size 19634 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..453587ea1762cbe4f7905a74713746107090fc97 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91073fe1911619668c3a02decea5bedf17e6dfd649c52b307a9593af827bc618 +size 27702 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..470b5e7c4a9608fbd8b3a8ba11b1fc96348f7461 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd06aa239924a9c5a55410bd90865fe1cb70ed03177bc5f91dcde2c0a1f5c502 +size 66711 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp b/images/Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp new file mode 100644 index 0000000000000000000000000000000000000000..d818ace05b47e6933b6efebd8a4a845ce39fc06b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6661cd0305f122979a5902f95ee4b8452b57bc78c79bed0096de771a778ec51d +size 48438 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87ad9e0a26e2000bc6216acf063bb58133fc00d2 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cded0cf2e71199412551149c83cc7f25a2babdf5ed0467790eb24b1a1d11bfda +size 128161 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp b/images/Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp new file mode 100644 index 0000000000000000000000000000000000000000..8ec5af9f0d703675963e97eaa81fbe75d3ee389a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bfba0c3bf2863e63234a1cb7110499795def3485ef128b2169f94e2c53d407 +size 58764 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05bd5cb43c4e856e525713c3ec866fb6d26aca8a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84f5d4078df3b03c321cf25aa6bbfa9ee72ff4906f2974cd7c6ad85a81e2f56 +size 93038 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f7d56a86373fecc25bb95cf1029626b1c01498a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4420f8ef487bf91269aa589653c18522c4dc88dd7f5126fb15f865815a017e49 +size 5777 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp b/images/Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp new file mode 100644 index 0000000000000000000000000000000000000000..6365e31e90b89dc35495b2f83dd8ad327421b6e8 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e6badb04edd06d6163b983af1cba7a95ba46cde243725cbd490c08ea7268a7 +size 54570 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36d7e36ce8a54a8bb24bb2972f792950b4f730e0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a3c7aefdc3cdd58d9ad58943600a4105eac7aa57d792861c62660acc1a4f02 +size 37607 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ac580233d63073c1cf5dd818a57e7393b646fa8 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626219eab89ba238e104133311eba952833274017cf41738744ccf44f4d899a0 +size 25947 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar.png b/images/Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar.png new file mode 100644 index 0000000000000000000000000000000000000000..d4727ca3682d1ecfaaf4a8fbeb2c52c24231a29f --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa47e9a5f4f12980cf160181a9de8978e4795ff2ed99b4e79c3a81605a34008b +size 869550 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png b/images/Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..d4727ca3682d1ecfaaf4a8fbeb2c52c24231a29f --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa47e9a5f4f12980cf160181a9de8978e4795ff2ed99b4e79c3a81605a34008b +size 869550 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5b8ca14af1d8c0dc5d6fe991dc983071d0e0a9a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93ead179ce33a67c3ab223e08fbd2aabf22b305ca2713a037aee7cc90bb1b4c +size 3331 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cb8cbdef7184fde805358a41de6eef3b5e1d91c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90f571ceb32f3c07b4bc0ae0e2973a82f27d90797b2ed4b665958095395c104 +size 96261 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae95499cfa43c79bb49244805078373ef7e75ed4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4bbcc173d5a27efc181bf2c9ac76328a8ca8f807aa43db9a5dc28f5ac6dcfc +size 48759 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f65a4aabef90988d2fe0600e92f0489f9465b02a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e048f562743605de9675aa9c6b952f1db6812a07b5665dbbe6f3039580ab1670 +size 13760 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp b/images/Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp new file mode 100644 index 0000000000000000000000000000000000000000..5706670cc5d43ed178a92493dfd4682b56690162 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bbaa0e17c4f11ae978c00f518f003709df812af623a57e41cb2d9839fe411e +size 18632 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..800b0ac254cf770ab65a82c2a6c21c6cc1598f77 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520f8f5b4fb81e533a569e4170acdd55f782e7fd02808ba56516aba89a1d2f7a +size 18785 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e19d81e69c7ce9abf18ca95fec0b6147189bc2d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b3c3a9d9cab371befc2b103292ebe6ecfa3ca88ebe39244781789cd80847f3 +size 91101 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccd49d838c8f6d2e69ccc80a9d13468a706ac794 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe17cc5063b5a78829161ec9eff2771e79b897cb1eb1cd23989780cba6e9f42 +size 76280 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc9eb2d84351150408ef53bcce2b85c732f31ecc --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae26ca0071cbd67d34cad735c576bf32930d7e3e1cbfeb486900aca06a788071 +size 273469 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa21cfaf3822e5b9ec0026f61f1acde6ca0e778e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1fd23c7a03e7f1cbb5c8190ea7025ae4c45c009a974c8b167b7c39fe1c111d +size 17763 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..361cf920c36dc7438531256cf2dda518215b73d2 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938a1d77e4154d8d016c0f466d4abf16635e6a20b0d12103ad666f6dd66888c0 +size 5382 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c063709096a3ce16e35bcbb04c0abbb09a4a5265 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c492023429b4c12ffb2294725c6f3611eb1db7df335aa18e1d716b522381ecab +size 12340 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8add9966e02baf77ce8713aa201e1a3d7bdd5cef --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465cd6ac1f121419cb34638a3fcd48ff54323dbdb959c45ad2458674936eef93 +size 20749 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57ba06956141ce6196ee70d75718e5a87731e372 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d89f3bcb93aa63c465a12f6049a643e6d4ff304e6a69e04a3e3af54a01fe3 +size 11873 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f369ec494b24cde59b42c7ebea352cd2a746384 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f7db193103d2211f4fabeab9fb6ad49deca97f3ad5ad911c30b84105774ecd +size 64787 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97a51966de2d7e1d193de1a2c2c0f6d58944d6a4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1633fbb8358292b56de0a72aa2e89c72aaae6edc3ed95391554cb2d6da2b85c8 +size 13909 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..825f1403275ed568c05e4fb0626c6545220064a7 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb5fe495f99a79e163ac96337dd5fd2b8b4edfad61f0e7bf4416b9681049fce +size 33168 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/2.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b37a7f630647a709e5f00cb1f1568aef3d57770 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ecb4a7bbdf9d5e5ad646bf23b3dac2e5b36f5c74acc5f1569ba7c7aaeedf7b0 +size 70756 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..8e9015548f17ca976c5f468aec759cf019dbdb75 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4286ce74c0649a8128d2adfea84a39522d0584ef0a45d229681ee2f62cf0305 +size 125605 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c135a13c04f997abfb504813d2bddfbdf883779 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2f4bda6ef99c8368dea47406f2c7e9808f1dc4a72c0b9efa132942aa753940 +size 65226 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f28051f4ca5c5cea72147959b6593a05c48b0797 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74487e251c1ad47513a48c2abd816b91113f372462388da1d65a66c187da55bc +size 106182 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21df1cc1ce7d4cfff0c254c7dfb753746649b7b0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9b68c28684847e6297366627a7f330b4dc39cbf77b0958712c45e582606557 +size 384812 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02ad7395751f2862ae119a7859bdc0b6eb36bde1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d97e890fc0e52273e8d173469874870e6560891919cf802e5521ccf66cea676 +size 380372 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a7c790d481448f22e324dd074e7afc4a5e2b473 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0511850760765ce4acb5712307c6b62c7baf6e4ac28ca0acea839a399565dcad +size 266374 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dab1d30925ae740be7e6c9194b04d498cd55160f --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55285522ab70811e7617822a9f67aec05026e235bf4731587a44eb8885de214 +size 290287 diff --git a/images/Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd9235c9d97e0608b9d50684b40ed7e3174f2880 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45473cf8082370eab6970b9d79ec7f3df175cfac68fed06c2232b196155f5c6d +size 270582 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad859cae148e424066e216dabbc6c923be57a6e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251f2a8ef497b2b51f693f9e2d3d916847353d0b41a6a4288befe8d510d713a4 +size 4536 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..128a8b90430d26540493b93d8215fa33cdfeb0e4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ff283a774a003976ce6e1b5d4ef9226a24170013ca0e8c4f8111a8e59ff072 +size 4106 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png new file mode 100644 index 0000000000000000000000000000000000000000..137b405d83537d072d4e52beb613e4450eb6a96b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d293c910dca62fbbfa486f0350e374b9dbe1f3a8fa9ca75b4b3bd2f85ef56b +size 58439 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png new file mode 100644 index 0000000000000000000000000000000000000000..07e705a7d5e25debfc1d2307c5c36c02b64b16ed --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b12307d123f461c2dbac6078a3bd7118d0e2dcafef51759acdb1989cfd4ca8 +size 77109 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png new file mode 100644 index 0000000000000000000000000000000000000000..0178d14b81ef32e9babc2e36907bf14023ea9f2e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5c6455fb0b3217e64391cde2cc9f0adbced592f39f0f15f1d821affa767293 +size 103826 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png new file mode 100644 index 0000000000000000000000000000000000000000..8d1df54e6aaa4aa97cd55eea4b7fd0cda981559e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7c3ec09e599c5d2eb863469c0e1200d2b59af5fa21bd987eb075bd66b7606a +size 90008 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png new file mode 100644 index 0000000000000000000000000000000000000000..f709504a0a4409714ee6f7fc27a9d6c85a969298 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e1ecc4a0410b32716a838d6fca9b7b914f001aba97b4590e9e1f72f3aa98bc +size 103298 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png new file mode 100644 index 0000000000000000000000000000000000000000..38aef15a5c9df203e5eadefad5aca644966f4b88 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c269533856fa88a5ee012db41d864b742860d5b364dc2ba99f4e56281b3f69d5 +size 99695 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png new file mode 100644 index 0000000000000000000000000000000000000000..e45e136937a458db3817d3b8ec7fc8d300d47837 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10df90f7a6f697c2e9c2f57ce5f149cf2acd325c39fb7d7efa3fb54705a83061 +size 167474 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png new file mode 100644 index 0000000000000000000000000000000000000000..698bd651d4da40cc2bd1a94ede1c23cc7ac79582 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce338f048b6a7c024132fbd4a4d16d58ba8f2d2f74c3985f1d193aff64c84e4 +size 138980 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14df2ce532d688d9311467b9f0a5985addfe0f97 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1034da5d8da4661c5414f2f0aee904a7de71333a6ad0da86f0116d122f8c6c +size 35449 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0eb1df5d13789435fd55cb4690fc0cf8a187f2 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315a5c6bd16af6336326f52ce2a90dff0fb12983c33fe250fee0b1afefa95d36 +size 58011 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a79cdfa8177cc15ccde39336b217587b103cf056 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57c2b1f7efbff53481cf48a94cfac748b5f7be3f98bef185249769ac4878f29 +size 61716 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png new file mode 100644 index 0000000000000000000000000000000000000000..a79cdfa8177cc15ccde39336b217587b103cf056 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57c2b1f7efbff53481cf48a94cfac748b5f7be3f98bef185249769ac4878f29 +size 61716 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..092d9cf6800338a7718475c7edeefcc98c5ddebb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fada335f47286f0880593a142e2f40e40b84d41c54b4f576b3ea57819ed25b +size 2939 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45bb474894671b934110446ae076d2f3567ec79c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7396b3a23b198a3ba5a4e575d39c22fda07786236de061982285a97171644168 +size 14253 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png new file mode 100644 index 0000000000000000000000000000000000000000..c428177cd52aa5314db38dbb35e21b715db43f89 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebfc9f0fd8214d0a999cff01158c9b0d156f0a44bbaffd0cde1c4dfd1f834abf +size 56812 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png new file mode 100644 index 0000000000000000000000000000000000000000..7effc406a54966740c98ab1f067685f96b042b6b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3698c26b0231d85f2514989e93fbf8107d2cdff4dff455023c3e3af3b9faca2 +size 64930 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbae86e2add0c448fb7df46f709ae119d7a25be8 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2b83c8f0f766223e9f815a5ea3652c6ee67520c75db6bae8035747891a6bf3 +size 4192 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f56a101910a3fe16e4efa5ad29270a60fb7a2ae --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7cd2d72f81577f9c95e1d82ce0e3bdbbcb9a09b54ef2635ca5195d3dc4b4de6 +size 8189 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bb6ac68c3188dddd2c2bf0f3b3a29647d8aa4da --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c88d9098448eaf064841ab39c4338acd6847ca946b854351c33b7b4b1832b20 +size 57674 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06f129b45d55d9e4a2783f64b81bc3c413dd954e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a34961e8cc87ed139cdc2a4a8e73fc0175282657b76378e99142d074163859 +size 6465 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3151008d23bc875e4160bfe8955c5b781cbae4be --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19203e8aa598ebcf968662bbe7f34f3f20fe79fd30a3a3d56a9acfcde42cc36 +size 3087 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a85c925d2c14d184bbe60597f047b3c163ad6f3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa563aeb922a5fd4e696a8ae6d1e3f6ba1358d8859c439627af497790332cc56 +size 6727 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd17ba389fa91f6f79b3481d74afc679dadd50f4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f066aa6974b57e4568980f2095a8bfc4ceba120c30c231d196528e02d348a1d2 +size 2880 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33152c1ca54f49e5d4a4cbc8e39ed87bd325e399 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffaa4c4d7a70a5bfb6dca2775cb7a03e1d904cd30de6cf027234793e1e379f0 +size 15399 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d42663d2edbea0da2df937545e4e635d7718f80a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4364ae14594b35c17e47a24fe0b08b2cbaa50e60d14bacb20e6ed2ea2ce70958 +size 23945 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b37e382252a0de7e4aead84415303b36910a9deb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8546899342730cf3923d6085696eaedd57b5e2b2f2cc66f6ebbfd907d94f4188 +size 24790 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bae505a4ed0c7b8f354b3d0ac93ff59a44fa7a86 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89d4ec3d11fa9d5afe69cf7511765cb750131d728da1f056cb0f8651901dcfe +size 11070 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c18e2f350fbd968fa56076ff8a306d1d8f9b1a3c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e08a16b427b3e41522bf2cb86ab91d6b83f476754e911d0b2def9febd5fb08 +size 3682 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8360a0a15dfda266add3dc7787554b256f8e4f9d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abebdf5f9634ad36e71f659ab19c80e73fb5990a773eef5723708c640edd937 +size 32594 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/3.png b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ded1f94e0665ee9f0a05c802258f75a7fc4c90 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d085497e72b44202583d88790a44286a6a9b6ea71dc25c377fce17b448f5535 +size 352570 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebc58ae2c2a272f26ecd5a59e3e5311c5273ce18 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892405e84c903fcfadaac85278b9921ffed8e899dfe6b5159f14b7ee3d36a7cc +size 36058 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb18c53415dce309e3232b82759845413f238186 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d1bba1dea5e5bf7087b8b5e4bc29c1743473de903698d9669ca578764a1fed +size 35501 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9106c534d6a8c6044ea6fd879b80cfdbd689064 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4663cef86ed43df9973a8cd863875d3919f64ce5217a1bbc89bbdcbc7a459e8 +size 7526 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e470b1cb59383650f2a14c6a455377a447a74d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178d5b3ac389fae4217f816addde6bdbf83a5435600ebd010f6acd2a0d1e8d73 +size 10228 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31f3bac0fcc01a49ce3ef8f16d31a0d5fe1e3a38 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1a3284d0451d4e29ca36b1069d30ac5805a61ba0a534c8a7f2a8a04d08c361 +size 9504 diff --git a/images/Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72c3a6e2b4b0f2607d4ce6004479f9e57f02555f --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b36b883e8a02b32440df98de2e8e9e5ba5c0d00b93fbeb6c1308612a33a8e04 +size 9714 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/1.png b/images/Tools_Instruments_and_Appliances/Iron/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..29cdfed322b4c84dc78dd22c41632523d0cf8aaa --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21a165d1758b9c6d7c48c65cff5a6caef2cdb5c4ad70db789884802cbd0efa9 +size 112265 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/10.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec9088773af3c588b76cc6d95e703373f0729389 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47f32e59b0a0d7cce4b6360439ce1fefcd7d3f7deec867d5d9e440f5d3ec6443 +size 42126 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/2.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50d8710b0d31c7a5bea053d1fa6ca8bee55329c0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afaaa1423a4188bcd9112bd8ec20fcf9a0ed988b148da5e1e68b640bf77324cd +size 16302 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/3.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a69ef6ee71e681b4d63130f116f97c82dac5f29 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516eb14e310ef47907f1bcb76b93df0a6cd2bb7048352164ad3938806b2a0146 +size 19339 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/4.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1277d9bf7417ae9cb884547b0fe39d9e38831efa --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091b8d14e08bbc212398532dfe1248bc4962111bb59c7c7ebb766c4c51f6e9e9 +size 13156 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/5.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea203cd79c96c7202d1856a0c2c28b84fcf02be1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3831895a06f75a47b3e1fed378c17c88b3149ade1ec50011946faea0c20b63f +size 13058 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/5_2.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33227aed3b00cb8dd95a5c10cd1d2556507eb717 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/5_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107adecba6492838c9e30d84a7bc687ecbbc821ffe358b018f7acba1925123c3 +size 10434 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/6.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a24b27080fd2f3d5d95c813c54174fda1cf5857a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffd909288505f5c6a50b4110b2d7e9b4cec32f378e40fd95e66cbf32058f7ea +size 27961 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/7.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faf024b5bbaa6262618903781c6d5db184836b9c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543ab0932a5390431c8055feee5e3f8240f466dc486cddfea22cacdd5138e7a5 +size 72164 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/7_2.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dbeec53eefa00e79d456ec780997355fd665b8c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/7_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00bab7fbf02e39de28eb03dc9c2416690392f4a79e16c4a323fdc4e9670ab9e +size 75501 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/8.png b/images/Tools_Instruments_and_Appliances/Iron/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a1b68c133ad362a261aec77f4cdf286df50806 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7058284f5a8cd6a39cfba653bc91931b92c29f88e7f3c1d937cb6d4d54fe8969 +size 535265 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Natural/9.jpg b/images/Tools_Instruments_and_Appliances/Iron/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e910d81cf6cfc267ff47b721f5ae8c6ee44fe339 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98607be31058c265b3aed82fb851bcf684ed10365538f63a961943694d369a09 +size 4658 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..29f66f84727c470aed8a7c0a1428038d37169ef3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2975422fbc300aab1c20dfec9f4cac49458700fa4ecae3493fa9d580d4fe8d1 +size 26972 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c43ddc47ff35b66cddc41ae484bf5fa737ccb8d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3d32a76a8c57332453f8437cb29e466a7fa7c9b594880a0aacce45cdaff8b4 +size 20057 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b4ec713d194b5d1e9840f8c4c808a8a61591aba3 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf7bfa1e093b7706dc8d5d0e99e3671d36e8e37714e15749d7561b4337079bc +size 33653 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a0b2ba0e5abcc8cefeb36a31a36177c6fb166615 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e4bef7b9efe7e2d30e8acd20fdc784b60b75f02c7328f3d083f549f1547322 +size 23956 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4a265a29c2817e62f5945a35596732199c7b2ed2 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01568238c72dd011051bca4b2b6902706c214a0ccef4ee8c91c8a0bfd80cc448 +size 36405 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..792a825e869844676d5da33437e9983c85cfee15 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c14d2b8f0ee05579a4c8274fa8d91f7ccd2f4e76fe910bac79f4cead102b98 +size 12624 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cf52d5c0cf3f8fc644ecbb7522bbb12226aac7b7 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcb252f105b174acc2b804390113ab3176ac8c87221a372947eea4d0ee600683 +size 37986 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..527de70bf205e7d0cc8c3cccc6e11cee4c990dda --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685125cf4eaf490c9b75f8686408bf7a3feba46046a07aca0f81296945c46da8 +size 21809 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg b/images/Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1fdc65bcf68b069974da41e72943ebc533cb682c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e816ac79a44593ced9bce10c9658c83f489debc1de740e1794ca1a6f27bda80e +size 19774 diff --git a/images/Tools_Instruments_and_Appliances/Iron/Tactile/9.png b/images/Tools_Instruments_and_Appliances/Iron/Tactile/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b02cdcd5969e8196e3f150ac6b8ccadec80d4a6b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Iron/Tactile/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6bf08a104916664484b9e85ddbbf99f45430c2b04c0e9aa4486a718d241402 +size 878128 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..07ccb838f65651a149d497ea0d270ce72ca62e45 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ecd8d6df3f28660fef8feb4e319caae52d785b886eed182eabc304e3fa67b7 +size 156076 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..76b76b5f0734425bfe89ebcc6887ad63e371e13a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d4f0450fc200cb2f1895b64a3f9a9e1364c19134962dc3d72bc5f544abd501 +size 23251 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a9a268c941956a674becb01d5ee3651f33f5cd8b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3d5eab3085723d736819b534d9db54570ffbe346610e9997c4c8be83a9dba2 +size 293519 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3a1bc6cecf1fe2f72343e07f9d77f6ac6ad874f1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244245b71df397fab9f4f5aff0e35d8dee05d5a02fa0f57110c48c2ee41ef53c +size 223860 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c0d71331785734f56414be03fcd440616bb527fb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd0786cf46bcd7cc6503ad9675c146873ec79d886f6d5384bbf1bb194a28ab9 +size 300418 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1af525994e3308672f747f04c6fd4fa534a51adb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff631c9e059bc75a3e9e0b8b39b710d8b8d00f6d200cd4ccc99b835901ef61b5 +size 208772 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..267448e15d890561f941fbf5fa6f2823b9fe2235 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f417a6b64b84d0cbfb842934c05c8e81d9794183079600532c564232ad6fa19 +size 184652 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cf960fb4b40689dd22c2ad57abc08977f7b6b5b4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8dfa28b721e05d3a335b3db46807608b073b1a5cc16615a65971e0ae281f68 +size 29967 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0092ccdd3effa1635ad5d4f6f4a8d37a0f037709 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fcebc8de344655259ad4d95e33a98c41e5e5e9e45ab066e405bb0765d506a0 +size 219051 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b9461b24d36cbf33a3b6220225ec89e74aae69aa --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985ac6e5ba7200bef7d26c84325289b3797d340999697cd06497982a691fc9d9 +size 119993 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7ff16e7f126fd2cbb0cc6eaac1c6f719ca9c8f62 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2041eba59064a08e90775bb696f37c6153eaf228c6f1941053fcd554b284f9 +size 25648 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e2214982558e633f82ff1612a1bc5a3de1b57225 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4159d8d151cd1d125626eaff98392b16891ce93bfb95e7e8eef35032d89af914 +size 20708 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f5b06a858965a065140f57ba7abcb473b0ba1e67 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffec83c61d682b786a1dd742b2a81a792eda97988483c6829cf93154444fe49 +size 17106 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0d146ea1e6fbb74ac25237a96a565df153ccd4ab --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4a902c2f1867799f45634266dec7d758b3f374a68537bdc1dfa69fe6fb2019 +size 31938 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/2.png b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d66c0e0e3e8084db93887e38179ed725b7cf4078 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d88f72a9e5bc37bc3f85ec746327bf6fa8847308c3b9aee446c665bcebc778d +size 595488 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6a524a4f50da823bafd4a25344420bf3b4666b1e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17eee7f73e219fe326aba91a3a82447c41c05490ae418f6156b9447d858a4743 +size 67253 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ace6ae2239810d40a7b1c1da2b0b4fee9e1428b4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8551a78c092dae21601f5281c21f5bb4e9aae45a9f1e9f55f5702341ed8d68c +size 14068 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1bf7c518d79d9e72b46bc54ef045f0d80248db76 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429f7bc782364fa79591025871b60d44e011df81f7dcf2452278be85c7d1e606 +size 16841 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..98014d8fa57ef27d657ef70129944f8a158d595c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a01acc946bdefb2fb0a16296ca9057baf532a32146b2179597be0ff7db3e3c0 +size 7894 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1b8b79fcabebcb346bf579158af1a2e163770231 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc217176d5457a6ccc825b55fa50e065ca0d29249a633ba6279f3334a493e72b +size 8410 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ccdc9887db06aca3c4e97bf203c7689416fdbcc0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d1a8461436941466a8f1e112ffd187dd3cf64fe365c4165847c96ba39ff900 +size 14587 diff --git a/images/Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..31ebffa9e4a8a3483847d5d47e65a796e34f69ac --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58199d495a9edfb35e3391dee31f632905feea3d3e9150531f1ac8fe6a5669c2 +size 9678 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ef0fd84387f520a7aec17739b6013ac8cb487a0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea62494a2ac026069a0f9aba3c05afab315c92c1500b6b53c97f85a13badcc1 +size 8286 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0d9557f034d64e654dc74c8777b7f0d486749b5 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c3ddbfb14dcb459aafcb0061920c7c1b92aab104cb21603109b5ce5361f0f2 +size 20781 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/11.png b/images/Tools_Instruments_and_Appliances/Pencil/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8460ac0d8ddd1c0313f41bf1393eae6f9e57b11a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e457bf467fb3f022793195228abbd7a872b6a6968e2f3331659e1dbd0236171 +size 109691 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d86fcc74706502aae65985cf4ccefda50172c773 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a752c8b5c8422bb7251fa24364e10fe715ff3944dd02912a38d9abdf192c8480 +size 11879 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80d33265f676b5a9a2d17af3217b689ca7883872 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4208ef3a48806f07e57f361c6d3624a8a0c55dcb7c76895a32dd935f4311a8d4 +size 16257 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/14.png b/images/Tools_Instruments_and_Appliances/Pencil/Natural/14.png new file mode 100644 index 0000000000000000000000000000000000000000..516a919241e06b917167e44e969fd6e9ecfc50bd --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd77ebb906d1c2f76577cb81c64e5fce087d520c6e4fb4f96b379ff6f749199d +size 155719 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/15.png b/images/Tools_Instruments_and_Appliances/Pencil/Natural/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ca1c05d3dd47856e3ce18ab4e0c3fd7981af3526 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60d0b6b8c1459185b950da2c4397c7ae42fd6e80540a503b0dc055ece5e2f91 +size 98405 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc5c90c75213df26688eff2052ab29178a19e615 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f11fc3d6aa709b319011986bcc9c9ef2c1a9956b02aace3bedd81fd91e50fb +size 15051 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/17.png b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6b8840d40b6349ca34e655c9ab2a78779f62b90d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953bbb97351c3dc1fa8dcc0d54cf53b8aa50e9ba473abe04a3b7585fb0f5d4ca +size 51354 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_2.png b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b8840d40b6349ca34e655c9ab2a78779f62b90d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953bbb97351c3dc1fa8dcc0d54cf53b8aa50e9ba473abe04a3b7585fb0f5d4ca +size 51354 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_3.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20f7c2d3188606fa9751406211191f6ea1e82681 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b25f000bc0065d71dc825c92e0e0bc0115f9c96c549c3f30adedd0ceded6ac +size 10269 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_4.png b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a9e6221dfd45d18020ec329ed52e47f0c465aa0 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/17_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b848b4003423ce2b3e72d20fde3b5dbeddb46afea2a87c6d8c32a395f9b494 +size 59795 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..668fdb4929234669af93d1db612ee119eadec3f4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84702c2c6ef07856ac19bf3fcf3141a79bf6bc62c580ed946830217ddbbe2b9 +size 12593 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4224d26cac21082487a8984dbc33eb4d8c69343 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e816a73544f348dd017ab15b99fc1abd35ecf4f63b664270075ba61674b3b596 +size 14830 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/1_2.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc9ef4ec5a0ed94237d4e266d1e4346c3aaea046 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/1_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:422f2c62186f3743c2fcfc14072b922d25fc905b88f52b4b924f05b0245c39d3 +size 9512 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dcaf81c34967100ba4a90a41512e452b91ac98c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e7a1e0958f3522340346e1804a9f4551cac0a4b9e311c7c6a628e096d124c2 +size 12077 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef98a2f9ee4e8234fc429fbb96f3bea854de9594 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec59a3c321fed52162398d406a28c0551e7882f126342f0afee261d43479392f +size 14132 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9f8b465f0282e5afbc97a52096eb903fd7a5344 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33c25a7c7d8151a9461c485ea137b36a7dd33a6b8bebd2a51508829bda10377 +size 13883 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/4_2.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/4_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd8956fee897592efa5ddb0b0dc2b0b099e53680 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/4_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c7e47825d2e80a3affb82826b1eec20a88a2954ba8ce27633346485c9db01a +size 11753 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36b62481384e38fd7da167dfa9a7244687cf82d1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d63ce0ad322c9e138813e0da710316ceea578628211cb8d483f1320f4bf75f4 +size 72787 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4555b617cc63ef130f360ec9497810d64094622a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7d0b7281c5fed19a516a3ebb9650af14fdd2e6f035f2f1ba751763ccfd797e +size 11545 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60e4da356dbb4a66bf1210144b238f1384e15522 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5218876017be94cc84196fbfc98cb5df6c7eed72efae0ee90e7700f030a16f8 +size 7040 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/7_2.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/7_2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f8d8387210cca620b8c978cea7c8704652de1fe1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/7_2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e31f6565271dee8724c3a154e9180f21c2130226c3cb0f304af671dd6af3d26 +size 20868 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84221a79eb53318ac38e921eacb76a7f66881df2 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924e16726f40b35782e9e242b48a2497e19b46c4a382d3281088f8eab140f2aa +size 12587 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/8_2.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13db4fcf201d27f02514e8c1b8de8363241043bf --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53ec0ac2f27328d6745cf7d6abd6c7e778899498c727153420513a59b2bbd6a +size 62432 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2c0c4524da1031db067c142cc874a3dc780fad42 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d898abfdd67953f3f79b689f8d8595fc19c425c2d8b0b415149165acd1942f +size 7005 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..327d45a2dfdb344a4251b4a5cde9b71fa267ee25 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923b7066f670f33bcb4fb4640738b1f5c1c069dccb55d1ea174e581d8d9a505b +size 24107 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..6c59f860e67069c77e135ed2ba54fd723f56448f --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f1513e6c6c7748a371a02de7d93cea9a2e2bfe450245cfeec4d08e3fd0ad56 +size 18433 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef2592cbd3884cdda643c10aa198951eda9ea6ac --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3ea2d3be38a2bbc224df5b269543da2ae2e7c301c1ff08e2942e08adc13f29 +size 27016 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b4aeb703288afb5279bdd0945f5dac4a6dfaf41 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bea1a2a84e98f969d3d51f27efd24975b960bf415ec7b843be23e2253da1d3 +size 37751 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83bf67742ddf36567ddf2bd7cd0cdec07fb12802 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd49a3b0bd06fa686eaee71b6d0cbca43b2439df8afa7ab4563ac2e5aadeb1d +size 16379 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38d998efd7cf1739cdb945000691f3afba05dd6e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e298cb7954a87e8b32441e26a9b753a93377d1970e7c1ed683e8aa4880bfd7 +size 16761 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c792b98be2d61d4edc52b27903e439bef8fe7b95 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c001566dc7ab3f0d550b487e12cb13887832ac1fb6a1f6b349d44f9105888b34 +size 18884 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07a86535e4ed312fb543d64a2fd83558bc513b07 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e414734d3f7090a581cd035a7c2f071db63009257a3f631df26615c0c35aba46 +size 15655 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8724e97f0445fcb11460d39e0f13d760f8a7fcad --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1422a591d6557ac1dc5245774ec251ee83cf9686fef0cd772b0176fbf9ec17f +size 6957 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c028809a58cd9791583d751e571cba89afc877e9 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:954e790638e9101aacf94dd3b9f10d3e3abfd459576393d5ddafaa06375c0b56 +size 13672 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb371634d9ddfe7bfa7a581be01d8951cd57a9fb --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8406e52d65f86e03e35469697426251a4a5b55ab4749818e4f55304fdee727c7 +size 35883 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..79793262c9f78e29508b3c95205de854880e3b99 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac674b13ac2f8a2bbb4ceec7eacd56a1289f1550e78653289b54db241a3a5e0 +size 26882 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f15be2955e23896e061ccb3860981d9d9f9281b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9b2df6c9d55afe90bd449260f3b4ee52293b19c09a594c9a2317de58ba6677 +size 20501 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4cb616521c7277f454f251744ee12f4aaafd48e --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4df3e3f846889544008a60c88f2288e4d7e5d9ae3dfa5e99ea0886ebc234fd +size 12847 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..79f479a14b0cda9ab9b9390c03636a969540ff65 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa5393d26ef736c15d909e29e084b60cab0d1ec0481b57bd66e03fe91f34d02 +size 19237 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d006c07d4432e31606c4682fac86902ed768c091 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d31933abee66ec1adf0640f72d7af17de47d8bf8351d81ba88d0189e291ef4c +size 12654 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d43c22baa963f5b404f8ed92eb219431b526f4aa --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646e7e9fe817a204d3333728f2a7eea1c167e3ef80942510d73ce63df46e6b76 +size 23474 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d9788456e860f03b0c86c7951dba7440a94ffe3b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389d18c33a978157e8448ff766e973a293019a69139872eb9e74fb7de34df561 +size 23326 diff --git a/images/Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c4f77c0087643d6d5361e3ef3ff333517307291c --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f10338239ef39a43496723365db5a7eaba8009953834b03e29cbc638e60c9355 +size 5200 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd3fb6f3326ce48e0988d80fe4b8b2347cacd05b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d021d5bd49e88785e368e723afae5812e8f96e5ffd9759ea0e1c66b330be9bb +size 86563 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a331a68eb3348c03c12a4c75e8c961a41f1afbd4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3e4684887110a6d13941e16d1b2c11cd4c9b4e4f0f5ba038d87cf67fb37b56 +size 21257 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9bcee2c5f7bffffcc6f6b7888e86cf3ac9f8e15 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b242b4730691c80cb6da903a1dbef25e045f931ab65d226283c5759b8fbd0b7 +size 80905 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82272d30b00727e6e9bc5e083768a8e032e95eb9 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7602febab100976214d74edbc3b99061987d4c0ff250329346df63b797a1037d +size 166358 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1c662032bc1d0e800b8da65192f1b0fc307ecdf9 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d14746bfd7225efca5a459b32dabc4d35bfaebfe427530dff211522bfb68ff +size 20975 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91dc52b276887d5808de3b2a0b905746b4fa56ed --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ecc18bde4975e45aa1e0f280f7971b1a9f30df0ddf10b28e4802fdcc9c9e8b +size 132403 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/6.png b/images/Tools_Instruments_and_Appliances/Spoon/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ddcfc1e4ac7312dba60aed1783cab0d6196c9f40 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565c6cd1d13ab5807e76a41e312d87e5b3c1421acd78560dd3c1d03281c5f94f +size 69773 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png b/images/Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..ddcfc1e4ac7312dba60aed1783cab0d6196c9f40 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565c6cd1d13ab5807e76a41e312d87e5b3c1421acd78560dd3c1d03281c5f94f +size 69773 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..336b65b220bc61f9b72fc20c89e80e37b1ad8bf1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c923da19ad1ab3debd0da7bd5e8bc6da720f92361834bda2246ed1d0b5d25e3 +size 233258 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b33c43beda0de99c0700885cd1216b7572dc2b55 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2d18d1a589706191a2234c68fae2249d868ce81d6d46a5125e720799b563c0 +size 5757 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg b/images/Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d791e637c9aebdc0ae4ba3aa7f5bc068034d80a --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967640d78db122b41335565acb8143dec12ac994a8801f0281c9210a166d9493 +size 107069 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ee74de98b6555729d313e5c187c0642d5d211275 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e02a43b3d3c86c4e3debd55b0e1af3e9fad5b4f1a7b80dc047653fd56569d3 +size 9511 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b88341d242e6efb51d6993ea75ae82e0c1f46519 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192320468baedfefc7c586523f43af3674d596169e9db3cca917aa317a6f059e +size 1741 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..74c1ed6eab7c9af5fb49c35e040f1c213587dd2b --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33d4e0d1a1ad48b94ec3be8c8c6b7f34950c8fd8e51a922503b8196a03996186 +size 4000 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f04dea56ba742bc61a7750a8f9251367b7f2c5d4 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dafc7c8cd96901a7d2dc4d88b52d612a05e79bc8370b19819ac80ce99806ee8 +size 9158 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c205706b3b6bb2caed44878e84c2be70888ba823 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f108914110a5d7087981552ab3cc6f74ae890d80150434068f8f46416e5000c +size 2663 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b933ff07037fbede5457e51b2675f18b2fb777b9 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457d44e44f4dce29d7d7983e1573345f55ed3bf3a2070a0926c6e5f75093f33f +size 5443 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/6.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ff19679222f189ec23fe067644873fb23ad4a648 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76c08e6ae9ff3504a9e5f5a1351021ca3d17ce2c75a30fd4cd21935cb3bb2d7 +size 3578 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..e1fec122c7adbe7c6d9460dd0bff92389a1428d6 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d476e4fb4ff57425bb21428f27ecd957f23ea352331083917bfe58838be7964a +size 517244 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d897ada10bf4b309da97941e4bcb57a210c3e1a1 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79ae6192822d403e7167789a67b4342d06f332efb44651638fa16b092068a44 +size 10297 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8965d432983dab697d925d1cb6b854c87fe57d2d --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7e068dcd162ef33d8690b2522acd10fab788bfb4416682b901c333eec38b96 +size 1803 diff --git a/images/Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..fcf6973423f98cf71b698de1ba229dd3dec90c01 --- /dev/null +++ b/images/Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7246c2d917f838b4af7ce342a9b650b880d852ccfb9d5b8dc044bfc3262211f +size 12924 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/1.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..07632d77d2e6809ee36ac2a796f2ef28b340894e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8c7d31f17de05cfc5cc91fa5b28e01a6b57fa18942ebdd44cb61e55a6f3802 +size 238774 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/10.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..90cd11815f10467667860b8c990ee7079080fda9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75497690d4622e4d5c202ce20b76068767068b0c8ce176b5f3b652411b386a14 +size 130092 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/2.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/2.png new file mode 100644 index 0000000000000000000000000000000000000000..58f50288729025e7b35f777f9ca293492b7a10ee --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9981f10637e322138e1c1ca5cef989fee5f6963e3dc0d339d47ae39257bdaac8 +size 1011368 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/3.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9de2281f447414d122dab9c2b06b107a8b39870f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6978e1c4bcb1839f9fd98b9df8e7b8f56014567acb4107c7a4492adbc490cfff +size 405371 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/4.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7632999789f3ec22bc7aa36eeda5f10e3a603373 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54e52eb646e50cb7fe1e0ef5fe8ccb38e6f3003c0b19db27f936476b9382d35 +size 912104 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/5.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0cda170d5066eac1dd5c8888b935367a8deba7a0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99843dd7ae8d31f666688ce009647616aeb531e3af9b0e5d1647f3a62331ed0b +size 86137 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/6.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..de32826415f33cb23d174f3a16d3856166e231c2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef9e8438d73775c39a82535e082762dcf3d14c08893b77c65c09c5d0eac4d79 +size 43626 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/7.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6b38540f9962a64fd5e190ab18cb2d7b9580afb2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed0d39184e54d887f14d887a202bc09588eac754b6910622b0013af3fa3f66 +size 122609 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/8.png b/images/Vehicles_and_Flight_Systems/Airplane/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a22386db3a2533a70bf1bfe6fa9beeb7bff2236d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce752c32b064d21f110bf83a05e7874cd15a5e1973bbec92443c29b2d220ef0 +size 919629 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg b/images/Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f1a66d45ac7d7abe88da2402cd97e018af8d25c8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea26beaa0378c8be2678e75046e4bdfd330a6de9a4c974be129634226aa3eb7d +size 163201 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44bce6590366d0b0e385f88bf651813eda0f7b14 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f112a658117b7acfdefc6443c0ccb9390304b2799284865d8b7cf82eb2ad3cf3 +size 66896 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..659ca599910251d0deac5be9a24ca7da8cbcaac7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f944da95fd92f679ef4e5aaa47224a992ea3200222ba16afb8e0ed340a46f6 +size 156531 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..491d799bf6a748d8042990f19e4f9b4fb052c8c9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a598680e55c1561d0258cfb26f7b889ecfa719d919c0b1e8ad9d81756b3ba7 +size 257325 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb116e32bd8102bb0bd61f3306413777ce002311 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb76b31aeca8e1c08c00133cb0680e74920814d474374d5f2e22fdad54c2b378 +size 27490 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/4.png b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e47ee42078f3fff8fbb2786347ba21472915ef2e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a3aa7784be1f48d5c273d77a85c9a9f07151fcae849419f56e79f5972e8cb2 +size 533096 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ed890964c4d308397d459d591a59bcc1abf7995 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25cd97ed168fdab9cdfb78701cafa69865c4599cdc426438335f8d34bbd8c02 +size 153475 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec79cc9615013f5c98350babcae045b8bed4914c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c862739986e9b403141fcf87affba5dbe530acaed8403df14676de07664fc7cb +size 36963 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbfcb15ecbae4f3d5bfbbddad5fcf87a944a9de5 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16cfd02b7539b5b97f0e597100061e1f330d9ed2fe3f2ebcd73b8adabb7fb91 +size 303390 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b7d12e4468140297e828cd526ece2b9f5dbc08e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d49618df9b35ae176173406765a6ff08fa914819d9922ed5356cbcb9eb9cf6 +size 294393 diff --git a/images/Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46d8a0e94ebd00c7e2ebd843dccc5a61712d6fe6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc085467aed0b08df3dc65c22af5f86c3c0c91b4a7fa846a402b78017721518f +size 11663 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png new file mode 100644 index 0000000000000000000000000000000000000000..00dfd2a8ef642e9c864fdddb2d473f4c154e472c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a029a7a455a940983ad5c677eb7bae92b2bb55356fd251bd21aa93434aa1d97e +size 108168 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c31a0d7c987548fd711d24ae26bccb9fd36fd1a2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3638b7d76b2697b7013c5d10170a4dadb069c9161a3fc9e7fc923cdc8e33b508 +size 7424 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png new file mode 100644 index 0000000000000000000000000000000000000000..5116ff20e2a4835493a666c7a028bc2ac5c7d16a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449719e800bdd123efeaf70409e509ee8b0726c316999d9375d3311775a5388c +size 119374 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f021062bf4c49d5ab686046fae68938abf195dd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7d04d68353b65ff80ddd6ba01ef9ad44b6b95f026cbf61d730987344893932 +size 27575 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png new file mode 100644 index 0000000000000000000000000000000000000000..332cf78581d8a1d60241c20a619c67cb57b8b6c2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b92f9c0393120bd3c9a69607a7202864e0d16ebbccff95eb8e3bbf989d58b7b +size 153040 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png new file mode 100644 index 0000000000000000000000000000000000000000..2d56e49a3e513395e8bfa67bfab716f3b90ced06 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e109325cb868e547164a94b7de05bc4e17332a935ca05d54d95a3b296dce7e +size 174261 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png new file mode 100644 index 0000000000000000000000000000000000000000..b4ebfcde839e224702414354a4796ec5207dcd96 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7512c75728e669d6dccaf52aaa35a10456be35b276c302c3091ca3021ad11d9e +size 171813 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png new file mode 100644 index 0000000000000000000000000000000000000000..836d04c4a2b7db1df78aaa7df4fe4366f31f05a8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ded22bda9c08169f68bbe9ea4eb85a4ff47faf8c100ca05ab949793f3a99ef +size 126836 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png new file mode 100644 index 0000000000000000000000000000000000000000..6dfcfbb66ff593a45720c7cd1a2a011d05dc9a96 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f01d6307342885e20bdf5b4edb6bb740ccb34a4a085783e22a0ffa753941f17 +size 151189 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png new file mode 100644 index 0000000000000000000000000000000000000000..3eccfc5c35a8137e0e16f8c446964716d8eecc9c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116f20601611dab997f32a197fcc52da100acb0038e2884c5dd83c74b29a8445 +size 124949 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcef7c7bb53efd81dab025c81623ec0fbfb83459 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d0ace89a59ad018581bc880445f24b73fa6d6bee89327d4e26117ce350b8e2 +size 9354 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/1.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f3004444c97d6648cf69883055ef10de98365ea --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37abd82fcabd7dcec392dda89093974a178c50eafd8598cac441b2e94c6f654f +size 62984 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c5570c991b8e95fe4dcb8ee796c2376cd9b41b0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b518f14a4173d8c794774516e6359f547fd4b394eb34b8ed4cea17d2fb0937 +size 176732 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71fd70b1cb8674df62b96845c6a1c09dda4b7bbf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9005fcf9d625a0d1853c3e15e6ca31a4210c9d7c1c8b7f8300d1e2bfcdd814 +size 179274 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..c72b02df9a522e15afda8e8dbbd6a9af54c7f624 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69c9ef2bc4bd2c7d694ae6287713503322b00cc490186d74fa6c9d3dafb1d48 +size 98590 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d71daafca7ad0ad6163b892a1b622bf32d26343 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:243b73646bcf3345668f60a0496a7ba399f281108a692de482af98a9444cc0df +size 74818 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56cd8c939e049140d3636e01003447618c98b399 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726b2f9dc7353f0bac854f24c3f104c9d7b26f6665ebb56941a5d4220f9c7418 +size 76368 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b57b84fa739b957ae79bac4b8ea0a0a036ce7c1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0743846d29d6bfe82998376b08a7300d816d3249cd7b302745a89ef67dcde8fa +size 151368 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be23e10136ef2073b151b5b79db7cea7bcb07102 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd47e74cfc32a92f09d2cb61d15798eaeaed8d88d416b12bb6176dbf893948f +size 162321 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..486ccdedbf56f63d3fc101794e6006f0212c32bb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23065a6f524b007cca33d982cd61ae01b8b7a6cdb6c6c4fc0e9ffc0a3c3bf85 +size 172308 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6de949d4106ab89c4afbf363089bfd5c879c8ae5 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af6ac2ea0186b733aca1a45650d23561f927d73d95067b0cc945e2ab484bd1c +size 965169 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc72d03c6033e8f3f98d49613585c65bf006d024 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f5eb01f10cef4de9e4a4fe474aa3ab66d5d7ed1f4d93eab3e81fdc4a1e29df +size 93305 diff --git a/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3f791a934f6c73c6782ed99e3e6dd1bd76a46ca --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0dfdfa808a7b9bd72052dafb688d1b4ecf01458593e392a98bf3f6799cf8c2 +size 57715 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..0466b827e12a57289c3858a7cf2a4b3ad55cd6dd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf2b40a27660f76f75f752ad2e0561f6eb85e2109e30a69d43dd8fccaa2127a +size 131109 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ad945b79d050fb17de6cc874bb49c185a58e67 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa21f8c4281c6f8dee479d8af3d016d099e5f440126dddc5e0247e812255038 +size 120758 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..146d64751d59cd045ac968de0a2d52fbb1e1d6ed --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc67e4a2c53600b45073948923ee99305ddc31956020fa7e847eb78cce8ba50 +size 133001 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..f542f6fd1c1eb7e239124aba8aecfeb4d4c0c766 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43726c6200fac0f0c6c34738568451c03363d5f5cf978ff219f1b9eb3934091a +size 148819 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..fecf59a89b48f24e5c3b6de1cc28fc14aaba611b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998925210e4e231afa455ae2f9326fd20ac7ae2e968c5fc2916244a5e3bd0fd7 +size 123488 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..b2cf74199c8c8eee3ff09b16b0e7be627f11bb90 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eba60022371693788bf2a8709120dd9c5da67a029081dd52e51272bb3f54b37 +size 120512 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..f542f6fd1c1eb7e239124aba8aecfeb4d4c0c766 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43726c6200fac0f0c6c34738568451c03363d5f5cf978ff219f1b9eb3934091a +size 148819 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..146d64751d59cd045ac968de0a2d52fbb1e1d6ed --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc67e4a2c53600b45073948923ee99305ddc31956020fa7e847eb78cce8ba50 +size 133001 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..2ac4b8e94ce7a30751d2c77a4005c6ea76172b6b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64c683d0c748707a10a49cc03bf3240ed40a3997860dc3f1987c3d6666a0d93 +size 126645 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..4f35a9a4968b1633738540744338f10d2d62bdbf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab89173de42766f3f9a771f7db7d67a1b442d0f26fc04a643d5bd41ba4b8a6c +size 101054 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..01a948b7fd6549658901185127bea00568bf8ae7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a721c2828b9a1c51580c4016d4373e63195a50f0ebf28028ec6ac0dc79e007 +size 147221 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..33d01d4b6425f76f5882a5bda526816a61887608 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16676e91da14ee82950234335adc9761b16ad5ad577790d874a41591f8916971 +size 158807 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..6b088cc7d4275b6ef1042154920a2e0e9f5c8871 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721dcb2f76083323b24d13212f31ecec463d8e07534ff271f149a949b61eaedb +size 101417 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..77a4d88aeb476b35d85d9ba3094961ff30a2fcec --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b8da9f6d42cbac3e0731a94748497fbe8f737b9aa3915e51dd2ecd34b2569e +size 101404 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..4f35a9a4968b1633738540744338f10d2d62bdbf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab89173de42766f3f9a771f7db7d67a1b442d0f26fc04a643d5bd41ba4b8a6c +size 101054 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ad945b79d050fb17de6cc874bb49c185a58e67 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa21f8c4281c6f8dee479d8af3d016d099e5f440126dddc5e0247e812255038 +size 120758 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..4f35a9a4968b1633738540744338f10d2d62bdbf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab89173de42766f3f9a771f7db7d67a1b442d0f26fc04a643d5bd41ba4b8a6c +size 101054 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png b/images/Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png new file mode 100644 index 0000000000000000000000000000000000000000..905107d869cef294ffeb7c221ae88c22ad9a66f6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e663b6854d461009781e7930131935359c871dea996444f77efe357c734e1263 +size 67400 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d384eeba56bcb5c877234df5328df988162610d2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675d77ecd76ed32930ac7061e91930a0270a134fb4e0ec270bbcd03ebbacd576 +size 36901 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d898af3ce858178bb40218031c3d0aee37cc5ede --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22d836f44ff10276da158e667f0015581dc40d48bdfa51d36233e3798f22aa5 +size 17384 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca80d9b77162800b25050adc0449f5c676dd5814 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f11373343fe121e29f2240bcbc3e2fa0441faf25ebbab2012375ca5d1e426f +size 27008 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7d7865f32843ea4ead05d1aa1622d76a61a4707 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ad32e2c2cfad15afc01555eadf3042b4a07a352d2907cda5d8358d23f7aaa5 +size 13237 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ab29804651e12604e311502a04ab286a0c61309 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c50da40630f7e5aac73cba06012084bd6a9a2e82426404198661b285a14284 +size 20034 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3f5ff516861b69ce60d7b2b027fa124ad3ff3d8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d1bf55ae9a1364dd4bfc180db010f71014dab7ecd67c5fbedfd804ec228255c +size 19389 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1083e1e5c8d38052807d9e2a3a47e9c7ad9325f1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac37c63bf7e646fc626d961dd09c5103f79bc3e6bee629bfef7ee243bd525dc2 +size 21479 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..072cec4df19a650d29ccf5dd9183547d63480103 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c710aeedcb41f85b66a559b004aa067c01a4921a28a4df461c678f6ac4430b6 +size 15363 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c46a309b3262af553772834172aae31a2388a785 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34996056feb63a93770053c0d8fe91442f47579e068fec36a4f1fac8ba8e062c +size 17440 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43869a0c39d8331265b012e2ea06c4ce773bb4bf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cadd6fdd40bfe1efbb1bebc54592ddcd1420206eb90e598784cfba27fa92674b +size 18307 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/19.png b/images/Vehicles_and_Flight_Systems/Boat/Tactile/19.png new file mode 100644 index 0000000000000000000000000000000000000000..61db1ecbc692dc6bdd9eeb801586b4bd25958b29 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960e7c54f19edd11cda0b58fca0c1d1fde24a54f0fb6f75a085f59b328d56569 +size 755425 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..282a77340d50207bb849314553266cbc6d405765 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee6bc5f7fdd19f5d6d1ce8705ad5a0f59ac77de0aa31dff14c4d7bf6db94565 +size 28920 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/3.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81e2188dbb880e9cf520fbf43643bd4b66cc441d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dda8ddda34fb4294cbaedf502254e9a23bd42e8a1289828d227986cedf5c647 +size 89578 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddb7a5ea2b4861e124a1efca5c24ce97c8e48838 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80c437d4ef737e14fa09952fde8109cbad15663ddb56d37891bc263164dd7ee +size 97245 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f87fce9c2bfafd4bc85a74b25d5d9b61a57940a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159e3122c47fa03facfe83b2c946d14ed9cab450eef460773dd10e18b6a0545e +size 11171 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/6.png b/images/Vehicles_and_Flight_Systems/Boat/Tactile/6.png new file mode 100644 index 0000000000000000000000000000000000000000..66c690ace34e0628dd31b2cf3e4f373d71569711 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38eb4ebe344de33480ca964091c2a7dc87d8847052703f4042188ee0de28d916 +size 1278110 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e071b715e060ffb33b95cecb7a065b1ab1c147e0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78334c775dafa54ff35f9f44321cf595395d3b0a43b0d4fd63b51061a22d330a +size 383090 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bde6203883237143697212780ca15aea5adb8f0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:577856b015fdef75a397b379ceaf9371b82f315b204e54ba9d972005b0fe0e9d +size 30870 diff --git a/images/Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff8969ee584723867cfc1db3e17ba4f54382b070 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177617f6264c3a84c4e5ccb70facbb7de98cd2d8e3edad68dd4491bb4b851ffa +size 29048 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d3d954df0304c2a01a75019893254e75a7da195 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7230396c441f86a151cd599eea03e4269c840d135031b2bba7f0a1cc57a27361 +size 119038 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..09123dc571c2ad4c63889d9a30cd74dcb6fc4769 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb9162afa22ec3078936682ab00b1eea248dc6df420e786135645bb3085101d +size 194190 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85b5c084c62755b7460fb37735cc8b3eefd13f2c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58638d457e01ad0408c3b95bec17e98f22dcbe5d2d3745b7d67912c5dc84df5f +size 18598 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be5fb22110edfe91b0916994997260a1228ad8b1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa81f01dd419bfdbb8549900c44cea31694295f67b90e796bdfb9397f694815 +size 25869 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..950c0be5366179e2863fb4ffd3f37e9101d94a2a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a4c58788f1c40be14f4fbf6f1ba434a4febc194268dfbede0abef37d9e3e1d +size 120415 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bf5604ea9ea0c46b3af8c85b9e35eeeaf9c8ee5 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7106c26bb887cad15fb006dd68b9eeefdadd297d4da4f8e3d3ab1e4e8364a4 +size 54422 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f1beb63a9063485a73a4815320bfad99948904c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521f4187e9c88c14eba7a1a71f8e2db838c1a1bfcfd2b64cca803dc072a03a66 +size 315238 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..751ca65d8e6923ddcf62ef0202818f94659dc1da --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7693d46f927e5a4635927e45deef9c07e6e4f7f673d6ffd40f5bfc08dcffae66 +size 56200 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e370902a0b343908886299ce05afb133ab7b7906 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28dbc57f6c227f6e51461ef8ce7fee8ad685a3bfde653fc79fed2de14911560 +size 29922 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4369e8baa35ce92f731765fea86cc1cbd2adb095 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a70cddfd8b46bb80354be996f496b4d3120242d7969c2dc93001f449d9fb4bb +size 26305 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c2f8d5735b191e3dc2fe61b75229c86babc9299 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4708f59a17af52b144f5adc75b5bd67ed4a55dfe16362b7cce7ee52a4ab323c8 +size 82426 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f33e5956b09e24731eec955937f82cb0149f532b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b490ceec850657c98cfb4ca987b8212eb6fa214361586ee4f29318e096023820 +size 825529 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c9d86ea440062e6d53823a237ed49dda5169dedf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabf75d214d7ce810124e19fb00b925d3a0896397f933530d943d91aa736bd36 +size 103423 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d67c517ff18f97a256436a27de55f56b34c7810d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcf72639b6b699630db39dfb51180084241269fe1ef281604a7720a90046c4e +size 77930 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d2443054e6a0e140d9beb485a31f206f6a6647a2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:180efa853e0b0d5348916b6c774eacda1d8c628cb0e118eb20ca06b85fcba52e +size 11314 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..eb8fff0ecc7bba1f9c8631276a994d29175f1652 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6192d9e2879e02d3111cb2154d503378493692aa715e13b524938197dcf3594e +size 91552 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f585cfe8d5c9d8f6ee789b3b81e1c6779fb3e320 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ea7c0725d519f9426226555a32484345bcf3efc213d1f96728df59b43984f0 +size 75206 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7aa38699033e70dd35da3c07e26310b924b66df3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e2f4d29df82b2d205e879a9d04723f726d57da410479b4dee7d58203c5d86d +size 384001 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25a2a0592edb46d66f7fa44d58724ebbaa69ac8e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb4c48f216aede8cf69d83fe826796aa73f637b76ef51590ca51779eaae43a4 +size 19314 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_3(2).jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_3(2).jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0449b031c6130c9f0be29632d36d06e29cbbba92 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_3(2).jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627227c5eeebb6137917d47699eee55a23305dffde42e85649ddad5c98e0bb8 +size 1718595 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..214688ff20e52214122dddd41df8e6495c8858ed --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f815ab51ca982a11a84e98083803c322984d7752ce834aaf84d91120ef5782d6 +size 58964 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b9fd22ca8b94b0eee132a7231e0c9aae090e750e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72830ce89614e229be240d969928a01ec9c155303d719c69ecf5acac34a466f1 +size 122509 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ecd99ccb7d5f3b625693b6164e36bbf786f9848 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229990618f452bfc25a9f9360ba2599693bc56beda69717562e65a1d8e20e35d +size 17419 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ef6a5dd9c9dbad6841cc08270d72bfef51291053 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35efebb4eab9b39778fcd25630ca7dd898e4fc1fa60c55d95d4c4156b8de889 +size 19919 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..287fe4281de3809fc330b095bf99b884eed8fe52 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb6818c6c91cd9066c3cab0dce6d376029c6d14dfa707a1ae638b2fd36a0f98 +size 47796 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7d60d67521e8fa14dd466d3b2f680cad3252a01e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f5faf23dcdbdd360c31b4428dc397f7794c844fed3157ad653c4e0d575a76e +size 26798 diff --git a/images/Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a130c8acc23bb0e4baa80892472fd890051d878d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d41a4cfb76a1eb2c23e2a555a4d0d2b40c8837383ff98742b5e4d39f3a4f282 +size 73282 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/1.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b7141016f274486d650702a085577a49dbe4538 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf43be41d1c37860ef061b7683710c4122310875d764518b5b27c907dec4a84 +size 247477 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/10.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50cfbc7c861e573090e7a319687f948668e6aee2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb76dfef10ee9004bb1d743dcabca2285a72c5f9bf322bed4e5637cae1c5f07 +size 20289 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4dd4d47c0b348dbc5f43e0f5e0fef40a9b0630bb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda65fe76a4df3b6ee08a50bed6853a08e24faa3982e240bb03029810e790493 +size 12785 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/12.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9dc25ac271ab10350453a3f37d2a96c9895b39f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da8fa6dfd5041c6ad631897cf80d8495a9b497ec3a53dc519d377bf7128803b +size 13640 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/13.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a53037293c8ee6289fa6f8c00678418c67c9247 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7260ef934ab0aeb4ebfbd090e52dfc917a85d77118d8dbf8284a5b02f6a9af +size 22177 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/14.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad9c808c614377c05e2596a573a4f10f873acec0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09726c085035f9f531f0616babf3bb7f199bada2c9316722648b14a768bdbf12 +size 51522 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/15.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..056d4a75c5c7d2a0254c57d31c9e92da5e752411 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3816e901c3976a1460a883ce0cfeb1b019af6f5054910fc33c31e6b0fb43f1 +size 24801 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/16.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25e498eb3602b913bd72ab6b140dcd95f334de1b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f58a9a031bc695a2359ae1121185fcb05bc6cf7c875c759671cdf4322355424 +size 35258 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/17.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0af96e268d27607b55bf2834454e3b22f345a622 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c14e259c7a4ddb8261c75deafe9ef79093622ffe64f2b5fe199bdb1ee86853d +size 29066 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/18.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8976f03247fd322b405d602efbea3ea7a77655fd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb1935c74c4997d74b7e11f9ed62525060bb975b20987089a07da5a3dea6a5c +size 18126 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/19.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..657e63b19e0873987a7e9416e2d5946b35186f80 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c82362a7d79ee9a9b2791f8fa9050f2025bb7ddb9f0567d823da9056743f750 +size 16220 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/2.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..227a36f0f99ee19a1d8c4517e2ba39553c247731 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45d53cdf7ffbc6b2bd5182aafc1c83147db6a4dd5ae4d26b31aa4b08274cfde +size 327532 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/20.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd9c10c3b6a75879b4affe608eef86d329662380 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58feb521aa9d7af9eaf0a9748f4cf32689c4a32302d69e97e8f8164e473778e2 +size 16857 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/21.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fb40ddaf791908ea2dff39c539e3cc83c4c04bb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8a7681651ab766a4f610ab20c9c35972e70596bb87e1e46443b47b738be9bf +size 26318 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/22.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bec5234435b9b93fbfb78f76702a221a6a7b2721 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd77b2e91e7b83c40e9f6141cda7e87fc3f2911fe1a822f707625390973aeea +size 14925 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/23.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab3afbd5f16562223f86cb5f25274953f09cc732 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08c13a72262592bcd0a6e40b9e8ad57e3f23b3200b54e3735f25d7683bb2cbe3 +size 30037 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/24.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21e22838179c166987b52bc7c990b1a98998366b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd5ad55cddb93b6c8b640661ca50ad1cc331a8ab576f42daed1e9851ece9f27 +size 14579 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/25.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7fa01ac64941bc452f3511efdc4816cf1b0ebcc --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21419080889e0f52cc7a835707ccd9cf04b5112e0f4d28df2efcf74182cec745 +size 11508 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/26.png b/images/Vehicles_and_Flight_Systems/Car/Tactile/26.png new file mode 100644 index 0000000000000000000000000000000000000000..5fbbbf1288324ae464d09303ce3cc4b41709022b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b064a2fd541585c37f3239fdea41e8ce3a1e12d2bdfcfaa5050eb7633bcd21b +size 797999 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/3.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c89ce58fe92a1422a93d31e432d0d7a171a4edc --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0f997e6e79861bb068e26b74f2fc34cd25f491bdf006d406d849a0404d644b +size 365168 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/4.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3456c7daf00d72148a92eea054d8efe8c5feb818 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9763575c2fc54532079575a4a19e31b01edbb357bfa20116d81c7075cf826266 +size 72952 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/5.png b/images/Vehicles_and_Flight_Systems/Car/Tactile/5.png new file mode 100644 index 0000000000000000000000000000000000000000..254ebbf19c075ffec90cbcdf795824e98226a682 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a39fca641b6b352e772f831da8b8fda12f154df8892ac26972f4d34c85e92d7 +size 834435 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/6.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51a08cf6bd44d46b8ec29b5abd58703b323f2fa3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1790dc574673d24dd82a10bd9e4b81d0bbcac34c44f63602556dace7bcc3f4a8 +size 83630 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/7.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f7b0e51dfcf9afa5661a7a06fe4f043b84c0911 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3024fb6cef61cd57a8dbf04642ce6a8a8ffc97a4e556d63af05e0989cc0f92 +size 37609 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af969af6b1cf32d589706f824e5ad393175ba181 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:075c6edfb59fce0069ec1ec61e0a36f02e2a976947c96368b72576e389dd7dc0 +size 29104 diff --git a/images/Vehicles_and_Flight_Systems/Car/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Car/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2711aa5f3aba23502529a8d290b809f9c2f7ddd3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Car/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284ea8151b5655c28f9dcb47bb02698f7b88f6d18a16df2dd37c8383fe09fbba +size 17612 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f8c9c4e28214ef9e19ef407621123ecf8edcb8f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9993c2864f6806e3baec04b1b5810a6f505bd29f03efc36b7971836a5863c5ec +size 27805 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6fd3ab4d1869703a9ac250cbf3669382ec9bf28 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9230831961961b11e81e2601a44be93d5e6bab6cad61216166577ddac6c136a5 +size 65707 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter(3).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6a6235cdef923431fef3925071782b4270e3d6c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ce9e0f2ba61122d26741f45d635ecd4636dba2662c1a501deddbc16ef4e80c +size 7617 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter(4).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f9c2fa9de8fff0b774410c53c7b706cc1893328 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112e2ff278ffcf400348ca06699dc04f543b0d52ef334e6f0a06c2f94f88541f +size 175830 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..f47f5622f4311001ad2c6bd553dc21c5c812bcac --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4afafc9eebcc71ce3ade15bb695f9383ccaca577a21c4110253236c0b7d777 +size 74118 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a6e289065ffdc4ec8ca70cede5a9eeb1902d009 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:325a033d8e18646a096340ddacbb967becad5dc669362610cc47323aab8d680c +size 7349 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbf49fd78b0e0e715624897550908d6c343c6981 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5586b405f416ec2a11e9c16dd694afe32634e4dbcdd42a93ac022ea729377385 +size 37611 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..93f4e2748dabe9e0f398d84e831edae8b43a4f07 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e1524dd6571b65a31eceb87765ff602429cb9bf5f478f65f4f4d946967b822 +size 348607 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4785908e83ff875f850f3e8e137f22a477cc3ce9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a7c8f8800a459d6f79c60d0bf1aeb4892e1dbd1478e1bf7cbb87fd518480fc +size 16644 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter(3).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..47da184dce607003e1546bfa50ae3a1eab346f16 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a267063889b915e3b9bde1ccf389a75d7a35a39265187a1446435ba7a7e6168 +size 77494 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b86621e5514329797eeee69adc079dfad74f5962 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97fa0643f4ce978203940209f0a3c5261d354db5b20a87276f43d0cbbeda5ad +size 301076 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter_2.png b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter_2.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4bb7dc7a1d28de606c2431636a65ea81152efd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f500f5a66a00411d096864a05bea247e89e3b31f64e3b6bb818445466716a983 +size 262190 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7261579910ea35cefe16f0520d3003ef9ebaa5b1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac784cae8418a15611ff0f845603f292c153dbbb6ef4b85e012397805998abc +size 5414 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3d6aa7234ec97f3d0c2cba6a3889118fc16abc0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece76c10446050ba911adfff49eec2e565b09716db4e931543db72b83fca7e94 +size 12958 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter(3).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..0aa7175dcaab67a6ff01880adec4bf6c5dc9d7f9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d965a4f3b6c4c731f698e3c27b2b4318d93b5a22744492e3d4f1f1a342fbf6 +size 8709 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d8c18acea0344bf7715d00627c9e590c8633c5f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f48f4e0205ca9f95325ddc62814fd0b713aafb9a41073689612f132762b5fc +size 527944 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5124fdef3b338037d4f2353b75a39f080a42d911 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9deb998876e7bf9ffeaa7999a34c440c72f35509ce16c37f941757eb9aa44243 +size 3965 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63f9bc70f83a5b17abdde85058d5d89372b884ee --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab759b8701f066f84ac0a37a88b94e2bc13fef38092f44f3e178d566bb6ec65 +size 64216 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4089c308b6bbe8118a9732ec98e0c1a768811d92 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2b3707817474ece944eec714fdeca9abb9acba722ec5859528c1cca96f442f +size 110260 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter(3).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a1d091089f59d330ceee62aeab142e346da2979 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81f980faa9ffd1f649dcc7816b4ecf9aae48fa4271c61b3e072f38135b8dfb7 +size 762755 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35ce699960ba376f92cbf9596bcf666103857923 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6dac33854764a8448db5cb86f21172c71223fbc4a0958cfafe045a9f8038231 +size 958795 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb84c4c54434f0ce907a7dfa206429be6b6cdd19 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1250ea028fab3b214c18a39fc78635d42f1f994c4d6a797a819389a150d52b +size 163410 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5696155843e5825ba6f156692e056ea313415c18 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770cfb051b0515f7dbedf8590614fc4d2af073130100302109277f1db216f6d8 +size 5445 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d7c8dd19fb4e6ceb18cd1577c171cd5b19e2363 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18faf4fa5417bdde78a8de86f7c98ea560e252a26f3159631e347d32bd941bd9 +size 99367 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..891bbe41db786f63abebdebdd9e5dc1b5b630676 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a0988555f2500e91e2e9345db543f339a94fba8f7948663fe2ae1a00aa6a2b +size 90476 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..761c52ea799975d636bef4815bf0f0e7ab8adc11 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28f2c5ca78fdd75f35aeaf8af165125db5a5758342df9eeb7516974335830b0 +size 95083 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb384405ab2ff5454bae45fa00c90996b045e4b8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7f3da6adfa7cd3b47983fd2b841008a2ea17149e703c5121fb731b20f4d92e +size 372942 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e3494cf15cbe5a3a7bb7e6d1b2a63123dc03885 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c813011759ea30f1ed1360de4345eed8ab3ed94e69def872a2c88dde54f8104 +size 45611 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5add27d167989f8f67243cd0040780419657f65c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80726120181dc93acf813df4e0d5c1832e9d22cb4ab1cb0fd535016f269342b3 +size 158612 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png new file mode 100644 index 0000000000000000000000000000000000000000..500e3435935b14b9b1559ec7d9c7b5e39e1a2420 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba03ed45de76e53c1032232ca1a5ae0ab4687063ec5893a65bc275b8332d1810 +size 404296 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter_2.png b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter_2.png new file mode 100644 index 0000000000000000000000000000000000000000..8d4e8400c7bf4811905c1be57c9e0dd5e962ef26 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee7e943dacabf140f5d1a6d081f69385cdfba6599867dfbe3e1be891c893406 +size 87756 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffbcc9595e05a5450d4ef5871c985649a8621712 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ffaa14273611e1fd99902ea274ff58d68f3c208f6d8f68f696fd848a40f2c1 +size 60460 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f660b50038f1eb7ddbcc0193f71f2df18cf62108 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa1687f09fe23d0d51abb0d835376cf51a1f5342ee2509084df20f965c7afab4 +size 32450 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fce7e3c7da8ae12e4f6e15e6a6f274a024d0373 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e73710ca6e657e567fac5c864f6c37cedf68855ba53c8a4a25496bf69647c95 +size 12788 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(3)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ccce2c6bbe19674a31c956bde8256ca8b2a354a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1622265209c8bb0693856078e662691d4a1e6a11096ffbe2ae751d26c3adf3a6 +size 76158 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae07b36d1f2872da4d1a9d19a6193e1aa3a493e2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b934f821119c8c899abc8d674138892f99bfe3404a0bf5fa8e56acc1208e1347 +size 3862 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31633cc45c486e6c1bd06faf365eb53ea0740521 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9944cf2a4b61d3444f0c34fa12282fcc3827d6efef1868cba44086db7ce3897 +size 33390 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a0da0018c442bf93ac6a0b75b8bd4ea1beeb7b6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43f0f00f2097be2c1648e944882efc48f9f4cab67d32a4d425e567259c1e65d +size 42095 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b39f914e79da48e1c8099f621e7712c84d9b40e2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc73f07ba3e5a0fbbf467c78e13b9165a2fbba3fa4e2c4e0e08a25306198442e +size 120094 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a866e7b64ec6c0c24e8575dadea24e7e16df2366 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7852317f234ed039a2285d6397650c562dbc945a77852855242ccc7955b5a3ac +size 10379 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8020f36af071e8f8ea62dbf6ffe93a9bed54f212 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d3d597c01458eb594ad01264ed69613aa845b6f0bf19425f7ed69096289809 +size 36372 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a73e209f2145b6ce4b0ec4c384f8fff6e042f13 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f579c3af52ed9ea2807be10cf493632fc86a0a6dc5943b235286e6f96aa76fd +size 5299309 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8633f7a3be2b3d18c30f9d23712ce4cb6ded2add --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9be5dd37630035422b898016151e7fac4d41242c64f59a483f4077090669fbb +size 35947 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43e45270a8b6edfdbcd117178bc0c1aa3ebf2712 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77e6643f635a94ee3b4e49008d1ba6c6f08ef821d63a357c9164a6145e62ed7 +size 20126 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc85aefda17eb4296a63ea7cb22a3c7eba8fe977 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e38e2bd329af1044f814a1d0db9171dc6b79965f23a69c2fec288b0e4be531 +size 88148 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9aa85022c18cc2344c120e0918c8829d60593899 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c76a75292853ba07dfb10f32b6bdcaadceda6c9a6531c37aee38038e75af4f02 +size 11610 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9aa85022c18cc2344c120e0918c8829d60593899 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c76a75292853ba07dfb10f32b6bdcaadceda6c9a6531c37aee38038e75af4f02 +size 11610 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..366d334b373129c32ed6d99fc73cdbc4473d016c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db86826ba75d823d3e587ac6c690a45e92623edc35991e0b4e392a6e91d1c0b +size 200766 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter(3).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..234791e27909cc080dd2c1e8a20246a193837981 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbd4878cc5b0992d32c0b41294fb1062add20ce5a17d129ab4fb538751ebc0d +size 7585 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb5c7971176741a6a33424f95c0c81370235b1f9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8551b5dda9d5627015eb05e2be2eb9a63fd4d7c797f310044e8a00bfa3cc5259 +size 66192 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..223373e6cb51d8e86e40e0b87ec51243774d5896 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b693abbfeb565fb37d228843f7fb76c63e8a20d1fdcc7ccce8b266ba4c181c79 +size 139182 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..373abe492c37a3300f94f1483de57c77e94399e4 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069f65f38337abd9c8566b4df219e638be83d71a5c2a5862af22038c6987a0e0 +size 46450 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45560f849bc52221bdf4d14511322a6f443c03a1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa3937695c179b99dc6c46f831bda03812fd8b361852893fa767495bc60da2c +size 13069 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f184c9e6cba63c909ed370d13e1d8ef648f5a36c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029159cebeca1dd896cb28c13c8f49257c81df1a31ae29bbc19a28cce983cc35 +size 27831 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee79c1a41957cebbc0b39e96bdfce99b06ed7910 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b71e6c3f722d88288051e8f8b165d8bdd8daecf13294babb3a59e872d7971c +size 11608 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(3)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(3)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7fa0bc6e82641361f28a02022cdf6c9c917d55c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(3)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b636fecbd9d443e15edf85664e13ed969c572affeabdccc591cf444d3fd0ee +size 39306 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc959d5497c3f8d4d46da8c8fcdf026d12b7e53d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7bfeaa64d8857fa9c6d9fc24ba64c34c7d6f3085ecfa9cd7c4edc3facc4a9be +size 45224 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d39732da40a641de195271cddf9f5a190b046d5 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c94b97da867b9c7036974bd061c71f76c0d8258af032c24522644c37b3c926c +size 55406 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e1ae7929c7a7fb07135c20fcf1180e40272720c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b34609ed1e49947ef18ef9e9f87a32d48535a8cff75d20286b0e908b079b00 +size 17722 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76c86761496e7bdf1423dcae739a077d06294124 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c098b3a042735996cf703a9927bc1e573275a9066cb7365fc7987a151d656134 +size 23240 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter(2)_Edited.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a042ed2f5ad733257ce2e36095d4b984e1aed9c0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78cc7f82fdb40c63cb8fff831605fa1706b48c8a7766c9532073ece1afde4f71 +size 8102 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6d02586e77bd2696928798960383d98d9aaa308 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e63c45896d6578fc3666c018f21c3c1226327bf94f446efbbb05bbc604de28c +size 54915 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5510d65ee4753f4508904979d27f19398b5a7c3e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57afebc61f784fe0a7dc051df201ec6270d09b2e5f715bbcc004d977753a2c3 +size 18086 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..e47eb5602493f39d07496fdeece314bc4a0c655d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84654a502f1d012be2f1e7a78fbd8848814a819989234883dbcffb899059824 +size 30256 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa50e18a64e6a163553e078fc96b11b8743a6809 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cadd24fc97c0e001623f60461b4807b408ca876c0d632c333f55e41956b02f +size 24316 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2177cd4315d5f2361fb899b6ebee746085d55231 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37498ea9f7ac2d390a1ee43a467d7deca752430f48d764892c08363c220547d3 +size 119297 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..45ba6ca9b30e361cb31a3e46957e6486e7b7dbf2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac9686728cb70f1bad9b262fc6efdebcb46bf6cd00bea8b704eda306dda7e08 +size 29166 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab526054a1352c9dbb174d1f0d442b6adf575805 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b4042c8110db8e9a78ed5f6845918da46ad7ff8bd65cec1e7c5bf811b1f770 +size 224156 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..c36cba1ba7903ea2dff9b33abb5d2579b6d525b8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58797c4b901ef6141c3279cbc311b55aa57667b23051496afb410d8594309264 +size 25129 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dd40ab1c311ad893efb21af4e5b6aa3144b082e7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae549134251cd90c06c1010871404069385cc812f948c3009f0915acc093b04 +size 6525 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3d6f185b185b57613b15f35cb0f31142d6f71639 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7ae200e6137a347c2a8f75b8e53aacffcd9279440d5fcc80650ab57b5b588e +size 5729 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ab6e0c3a77d2d9ae5575ced47234ac6491bb3f47 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc91665ebc8b940c8eaadb88e23587b8d96be71e6142e39637979d4e27a4b48 +size 5999 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a8934f99b0d14b22221f91829601d0a5d50b718f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a4bb7bda38efde94f07a2a49b23b22b2d01192d1a36f188f6dbde4b363ebcd +size 7115 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a3a8e3ea7555785f89ed0944731b95edd55b2e1a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6112925e618f54ed892d2317e45a2613030be68e27c8cbdf64227361a7304c04 +size 6717 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..56e075fb9b5b436fafd6443f2ed425b4659d677d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1914df4809758ca113e5e0bb7221e474579a1b07e38e924e828c6b2c5d7cc4 +size 5589 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8714fdaf1aba54411850af15d6384b60aec203f2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9310a30822b7a8e230b93e3a54682d8234bb390436b2ff904f96788e714542 +size 6746 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7537f605ddc776b1c89bbfbb0e31a1570b179950 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c674eab8438ab2cba2473427031ff7fd83218944d4214d28f562ecb19e1fdf +size 7283 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7bb39fa9b0f286404c6ca1d75eeabad2fd6bdc17 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde407bb894c163f720b35dfaa7ce84231a45a0b1e1d87fd0a1dcb1022d56213 +size 7303 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9e68d48f5e0d6ff333d0b56763a4a43c5178f5ea --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86065865ca06e1f2850b60db17049c08fc134efffeb2bca99c2f5e71982cb2c4 +size 5457 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..871318de536ffe56827ee00a7bf611c97fb982b3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd78ef185d522e7df26e7c700f1059bef91a261a8319104f1f4add50109c7849 +size 6323 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..adcfcf60934cd0bfd969c22c5204e0237d676008 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4257d85e2ea2ff1f5639ed967b9a329ccb39e6ff033b0ba865bb15faaeee5b4 +size 57953 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b0109d41e518ee84fcdfb20b01dad757bf6b6252 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbbb45531e8c8a0f23d49fb54a33fb9332ede362a6b39edddfbb586b5782719 +size 35756 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4e8ab633a4c301eee893cdf6473c5a78a6f3bbd8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eca1a0ff8ace9312d6e77cdea50e06ea19b95cebeb2269b10ce7b7b80a3a0e7 +size 45542 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..762ee56ffe9185f9eac0fc23ff08fb5f1d3e700f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286ccfcd744dd1af7c31ba391b4c81d3e1ab48dcc3efaef968c649683dbd5cee +size 13535 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c85851b4272cf901e3fc75c472f4b1116c60665e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01cabfb087b972db6501f551d228ae1bbd17ffbb700cbd842eef60d2219aecca +size 10016 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ccd68ea3d9d60c369b7025cfc663f9858954f328 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ab6b4de4f9804ef9dd873290381f1c7d4bf21b2bc152efefa1a9502d55e534 +size 19205 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..68471f88b6c910e54c19a8ba7ee4f8b0f4a563e7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67696a3c39a8d57a8f089fcaa498ccc85ed14d9759d77ad73d16dd4c3ab4bfb2 +size 28555 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c4f0687ea2fec65114a26c3d3ff8b498820fddea --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582eb4e8bf355b723340b81110ecbee851ef0a7e57cd285f8cd9877ccafeac1c +size 17752 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cb4a0d7d209aaad7f8a7f77817fedb0fd31779d6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8d0ce6dd51e91fe2b1bc553f2c59abe7ad3b89f7f60ce478e5caaa0fa17b98 +size 11413 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f8d47bbe042c6448c298b1823acc3cb16a6b1f22 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a900e438825c2dd66cd40c12cf191cbeffa5563afbfe57aeffcc96acfd90aa2 +size 45024 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2e9577f2737770097796f6ba17c564d7180ee2d0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d471462d05d7cc5505cc4ed7ac00976e4e314ca8a3110a5a8d0a789e787af093 +size 24206 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..126ff83b22edb0db14fc5eb89a3bb0400e1ea831 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18673d6b2dee889575e07cac82395dd65d37bccbc36f15df4e8c5f8b32e2e37f +size 10350 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9817845211f81b2f39875e0e94f3c365b78efae3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea87c9a570850e997c739eab4b20a5f0e41774454c210922ffbca9f30ddeeba +size 23352 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/31.jpg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b45498f5215afa066763c02cab14c75b2113e3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e8eef0907494683d1f2500468970a6edda121bfbbf28539b1c7f5ac68f5767 +size 17369 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..873ccf8d52a58ace0016186c7ee98514335f05b1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9570f6b5c38d57927164e169df2bfe9735779640ef7d9853103f0cf22c124a10 +size 703730 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..d3adf70e493b9556a8def6c23f05a8d018a73efe --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef1f74741a50d0ffe3c7f3f692edfd46922e7794d5158e11a9edf953f0e2438 +size 4560 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1198911cfcce95bc9ec32bf65c1409c67186a18d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b6d38b14a556720e352b5d5f307ff22bcba6ffaeea3c01f3038555ba491da3 +size 5019 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..559be5774d90ff3838f6c7195ddfccb21a3f6613 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3075f275cce2714952fad08763c2926681ead1a326151132907a8294c99d73 +size 4228 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f27410ed894a76eab8385a083d598d3c4baa4803 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc823d4bb202cfb5c6be2ed3702913eedab1f36e10494bd0cdda22840bf99d5 +size 14119 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dd007cf7c3d9b18beece23dc204e19d324f0b6aa --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b95112f8ba3fa176e0b344d9c1477297d600df2a43806ae29f0dd78b4539c9 +size 5138 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8682a50ca44174efc12b8e664473a72b852a7ebb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27bf74e6a366627e04300794870a5e5e46856999c01bd0f6b90e9a53f645915 +size 5943 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2cef2d57e6e6c369c463eddda3441167cebb0ee7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7962fde3420a6e157ecce9b197159b4cba34873aef01b5c148b281505d1a3b7d +size 5441 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..449aaf9435d0184b2a9d2b1475388609ffc977b5 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed57b85c8e0c37e359c6d375f25db5b4187fff269b1953c4fb8bc2eb6a63586 +size 5955 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..87cc3008c883315045aa9f3de3eacb10c6d51e16 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58662d960f3fc5aa6e959fcbcfd48102eb8a6d9d19b7be975baa9de33a39a743 +size 5855 diff --git a/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2a4d988fca04d20390d2e53a7022939456c085fb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6936540b6e2c6b68f32a3b8ab442475ef89c47ae4c78fc4a9999f70a1d88e609 +size 6385 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2d6160ef8532102c108bb93a7524544ba3751a85 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8706cd72dc8863b2ad43cf1e87d8029c6597b29e18bf9ade5222fd13a7547aa2 +size 174240 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..572e767faced186d8adc12a0c634d82c8fbb2141 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6723953ecd9c8a11e7f07985a94cd850c6e35088424df9e17391dfdab8259c9e +size 114633 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..eeadd673ae3e8168e07c4d5da8182337708f4a4d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bef6099dff4b9ed4f3e0e715c18c0811a46e12228032dd2d5aad69f2a26a7d +size 158256 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef64ea8d50d5b10d82d9dcf8576dacc3f5130a5b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcee6eb1ab9635a8df6ed1896e5cc16f5d8a53f473816e2fc9c207975ba1c367 +size 131999 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png new file mode 100644 index 0000000000000000000000000000000000000000..fc6a2dc04880a69a828a258d4fe93978057046cb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81039fa87be9a09c730a96facb252616f8fa5ea936a6682bdc86d46bf33e1c1e +size 126065 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..642f1be1257d4ce7860e9e7d2abfc699dbfa763b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c48449c843104256bf681effedd74f38bab7f393591d522eae330e22f2cc7b3 +size 107676 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/1_1.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/1_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e94f3d783f9c527b37211560d75f12e38286d6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/1_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9b64582b5729b448f603d979be694f66b324822bfe66a2d9abe2af16a0907c +size 190749 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6674ff05c372aa1852a92ee68333c51cbeb3dd0d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55bd787025cad0efb4b459949654a0a3359de1862a96cf76eecab4214ab78a4 +size 201429 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/2_2.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/2_2.png new file mode 100644 index 0000000000000000000000000000000000000000..071b877086d2b3b24f8b50a36183208a4e561b50 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/2_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a94fab169ac3da557027623467b4efe7b9de059052ae274150f783ba459a333 +size 144660 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..80bded954bb07330b0fd1b0f7027e21ac74fccda --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9305d9953dd002368ee070d5525018f9f91452056d2ab20ba142e6eb6e500884 +size 234005 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..132b70a3f58c73e94db300d34d0d65528b43f754 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a7f17dd68efe7f76555bc8cc39f78c0ae5e7670a17391541cc38f6f82cbf8a +size 201571 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ce4ae4cc117fc3dcdaac86137e5eaf78afe1585a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48989bdd92876a306e914f372ce1e7666e3c02ecc44d4d8e897f0e640c166c3d +size 67771 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e7b63c537fc961a86da0e6957c2fefe9377dfca7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982b0e70dac1879d3a377a9cd081caec3c58a1b208999c79310a791fd52a5a77 +size 207362 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..778ac1f21377e47d007d8fdebed1e6b8ca5e7f7b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45184c03a48d5ad9720b53fc0d980284da5f3d360cd281872eeacdba50857e4e +size 62950 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..267fd234d556f07d4e40a98d9a26b5a207bfa52f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec3be563bdfc029f480d8417db41bcf28d24c061ee25ec3e7b429401fff5ac8 +size 138241 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f269b1dc53622d15f132f614927fcc6457630f98 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ac9f1dfa0451cce1003efaf50e651ea89acef9e61bb7a192b5946c2a92405e +size 140073 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a9a477ad054fbc22eb1e667f45bf057dc84a27d4 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55aad27e14ceb57279689b8dbec1a14be77c16ddcc91552d71c8178cf71f87ed +size 23031 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cb740e99f1f79ee071344385f1185558738e943c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb77421ef47338c8cb57eb4bd1aba2077c7aade160c86a4f28b95958b226d54 +size 69741 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fb0d4d5a5de47386a820334366619dc27ed6d35 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecf216ecb6e864d61fb1bbbb8092317434766fdc0a4e69f705828c56993ccae +size 88389 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43919aabd8b3fbbf009d3750ced738d7346fb0ee --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b6dff6f2bc496dd1b1389c3cdb21271f4d311fed65883dab40ea07a3632dca +size 31842 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6e1c8fd17c4c6df537d5ed4f99daf56f44a08ef --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde8f09a2e3791253a1bbb559ab0ef3d40a9d60e7ccf011eec2c646b67a72cc1 +size 97761 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d15d229c97f58b3bf5076f579c8b3dd0b69c0cbe --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a5c03ad5ea3a93dee2cff83836271b4282a4c92e66bfd72246038a45fee150 +size 18042 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..df58750f4c6336d2dddc1653f57cf75adfec5ab2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5bdafd16cab896bcde866edc7046c8fe9a7efacab83538eb3f5e2ca4adf2bf +size 95826 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..61c92250874c4ce17ce016ce592414e39a3ce93f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1a880d41363368da1456cdcff3037de321cc6746960ceba3350a79d98e6139 +size 12117 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..733801e0c6aa10c9695b6a64d1bfdbcdb6635a8e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db211b447e497b99a786ec02d11ef72624c5e9f16049de0b1a3350606c4a94d5 +size 14364 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..194d4b94992a117824d1f823318e562a1feea066 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356e59c88bed45d747f3b99a8ebd67d92eae4fc1143c5952caa1317d1e66364e +size 49123 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..986890309b8d7e4be625b19581e32daad00fc0dc --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44194ecbed27c3beec82fde652d8fb252dcd9e45c881266709ec7edd6649c272 +size 29332 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..47f058e60e2d62298231172353128586c012f675 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114fc910eec4a1379d8d045d589eade1f63bfeb3c09187ac170232313d52def9 +size 14025 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..103338b5659c390ab39eca37f7caadde575a92f6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ae34bd486493c09fc2a4410a36e9618ad1524a744384390b79292f5bff34fb +size 25109 diff --git a/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd9c1d803a6c2cc6100d6f426d3b05cec61c2b96 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd33d0a9996a25e15aedfce16a8cb730543eb18238b240922e8ec75001d4c7e +size 52022 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56467858b559b9f91d0695e2da56e9c7f96ffbb0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a937929b5b5202c66593ae542111ccc8e735807cf082e02a3f7eb3079c46f91 +size 560948 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15b35510c108459ad2eb94d12d23967b5de2cdd4 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d32c04b940bad863aabc9ebad29032e49339421566a14199bcb13a494d1a8b +size 241159 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcaa7ed7c57c733b758f9d6f6b71b183f361252b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e91c8dfcc64ad28b186cf57da1082a5d704e0173bfb395586340d73f7e8934 +size 740031 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fca5c4c58a79ad2a1dd802b7302ad513e400602d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32053002f6cea0cb82e6bec148ac819b51350e61a4a3a45c9d67cc7ca71cf7b6 +size 303080 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45c3249acf5c76f406b12bfe7e018c87326e20eb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8deb6f6fddceb558c7d6386d4be5b8f19641d4e3b06488dda596a7293e8952 +size 15355 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05c6d0e8f27b3654f637adaf8d95e22ad2cd8a1b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160c61f4820aff99965bf024632136ee872f493ba33b642f29b6ca0ebdd186ca +size 940806 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..de4eca4a9f759afa2b702b00a793decb03237c41 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed053c9b0b083f8ffada723fc394782366bc3f34edc9ba3382bbd0c6a6a5bc8 +size 44475 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..337676c3ed9d7e8dc3bb12f6c1bb24bddb4abb59 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bdb4b91d6bc33e5d0623c3360e8e4c0628e43e9e440bd37cb45974033ad5e6 +size 41424 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..553cd251b963d31384a24fc8701a3a020c525ed3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d603b16c7e9015c8f1cf8a876f745ae5cdb85f377746042486587ad14bc862b2 +size 132640 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae08964c7fe094b730be18298325424f56a94be7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaaedc6c7d738719857e71e04bd7818be70390f956b3f4f613fb649fe2f33fe +size 626331 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33faf47a4bc98a408169cf3b1a286ce9a87096c2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48001703f08ef93893ed64a27133bbad35f5087b5f91928bc76ccbae3dce7322 +size 192670 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb8214deb3feebf77723d8b2d8829d4de953834b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b751e50542a6ffc6b118f309bd8eec395f3cc8ba7da9a20dc7bb23cfa53ab0d1 +size 1370419 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f7404eea6e2e92745b9f6e1e366311c1983e410 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad882c665e183e6d6a41e5870891d473f88650dffba2075d9d24dbcdcc78876 +size 613534 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4df8655f2cf4c1506c30b801d211285a9d34eb3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737e118c200016a505a5e67a92e53ead76b1f17aecdd6f9499fd0f6c5531c25c +size 25776 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a758e1db8083db69e0a3697f89a9f58b26421bd9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c515ac451527326264c55be7ba80849736dacdecfe6b7410a592559a347ef1 +size 386344 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc60093013b8acddbb0ebdc2f33d751709ff7834 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4c71466ed744b8fbf2e21881c2a05a029c69f0096a7bb1a632713492f7653c +size 208341 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4eaf4035dc8349149c4ee0536f319fbef15c01b6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717cda15b81e3d5c7b6817ff9b969528eb9ee343e22f1a0805e5ae250f102c97 +size 669772 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fdfdac8408e4f8e03500dbb82ffb10bf84f15a8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:490ef93788c680e007c2235de6dfcb463c9ebb5f7b5f4eecbf42a7c2569c1ad0 +size 915774 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..613350b3815f34dd6780ea390d74df776bf8bbc3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b25a164c6d9acc61f4fdc4d4483d8b0f06407e9656e8caf162ca8fc4b3b2b0 +size 11967 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fca5c4c58a79ad2a1dd802b7302ad513e400602d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32053002f6cea0cb82e6bec148ac819b51350e61a4a3a45c9d67cc7ca71cf7b6 +size 303080 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..31dac6c82e8738c78d12eb4895d739f1b4436038 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbeb7644ff04c3d23809112c2226d907bdd74dcac7ed664ba485699f120a8722 +size 36985 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e54b3eb7d7354cbc2c4fcffaa25c9e18939bdebf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fac38fba66c37e3b8d279f15bd477d36ac8a09f049246cfafe0ae20b8f688e6 +size 74043 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77f99f263ae669d2a620417a76f5c7eaf1ef9aac --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692f1cf6919c28344c26dbc55c6f0b0ff4e8bca28f86c7f17a8e5e2918b36e2b +size 514612 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cbb1df4f21325d4e07a20a276e18d412d4b9950e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c815d8db02b2dc748b02de703b0839e2318a8e86fb7d4c149555c465ca5eb06 +size 10583 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..bc4f81f6eb82982eb61023ecf15ed7e380732f7b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931d7b25fad15cf3ca142ea2c968aeffa005ece3c082eda57b45941311b44119 +size 8684 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9a9ad975ee805e67fcbbea9e29be02662df3359 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bced610d64f216308baea098060a94db3ba1a9c4b341d391d11d1805dca3e19 +size 13631 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9fcf118dcd494841e5d2288bfaa527947ab2fca6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b3ee7b5a02fb46f2e8c0442c0270bb5f9b3526a357a2a0e975d9ed548fe564 +size 38432 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce3e02e2d2a357ac7b915a6c870a43173a3c6db --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac3fd2bd2a3a3ecd56badde9584e88a5eab4c397e64bc6ea99487c581e81535a +size 15554 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..29bf0525d476e513445d58797e698662df1defc2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9c2d467e0d66f214e995e10f2f0c218aa4e5a4f691bd83563ec34a399f4fe4 +size 5170 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5c17ffa7be4e9e58351c7b5c14b752255a00024c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8051f8f2067d2bf9db44c369587123b5106afe3c470a587e54376a7716e5f106 +size 6135 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..95185dfc3f59da4a30bf0b03b4a0d06daa6bdf74 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32ec69567e6123ed2bdfcc701c0de0f38008ceefd7a09ffa86b284a903fa3e0 +size 5890 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..82db7cd4599b15abd2df330e2985a0664d35eb74 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ae911cd49f7857defcccaea524ccf5e0bf848ec89950ab4683440210bae36b +size 7882 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9c69a8705fa761d0152d6e4ea21e474dc0b569ca --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdad28a8b9b6d119722dbae13233e6d77ad34e114ec1caaa903f83bca269ec0d +size 6121 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f4b964fa0de04f68d86daaa6bb2ee20054afcdcb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba410166e3d0c5b8e1066c44bbe1f0816c19eabbedaf77970d4cf0edad057228 +size 6289 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b78c39b3049315cff30688a611150b4a7496a460 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534c1a32859d03e487b1a45adbade0668bb42a082a0da5b4dd52c0535450e434 +size 9178 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..efa4d2d161910ac3b65c7966349d4f5cc0c3869a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11aa540f3a9c40cfe7423df43284a3013f0fc3155cc8451b0ff1cdf72f7cca00 +size 4918 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0d4df4aaab33b928f00e80b53dcc47c146b23e11 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ebb4d7ca4f3397e6be8db52de78845125d8771cc6cc5a2ba7affbf28991160 +size 5907 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3ff2b3cc3ad3a65a36db7d90a9eca09f43a084ce --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac73de493257b503b2b47df57bdfb151a0d368a5b373d1c02aae2dc632f5a16 +size 5029 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e813df28cd662d46096b8d1c6a1359c0837780ae --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c007d0a7b48eb03b38ff9b339a3de0ed8d1674f00e7f23bc40e4966b279a05 +size 33108 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..591ce4deaa922f36494993dcc08c30fd93cca6d9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ebd62173514710a36989e45edda78f8c863105eb6c3506eb5ef07a96fb9267 +size 12842 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..cbde7f67b0c1d9245900ca73f19907e841c9f7ae --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a21493f5ca9f5747ea95dac9e5f7f80458c8999bd163faeb213a856a172ba4 +size 10678 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f003173f46c3ef393391684d12e8f26654082f41 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be456908cc455d0fbc6f96697ef8ade0f96e12f27c29d2a758aaa7eba8294bf8 +size 10062 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/6.png b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/6.png new file mode 100644 index 0000000000000000000000000000000000000000..89b901616723ed2c538e80efc7501b57c919b89f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:262a98925d51debdf61fc7109728cc8035ee1893516c8dd68608693c08c6f2b1 +size 1952302 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b67c67a46a1fc1efcb422be6a9cc817fe1a94466 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12dca3572e528f002ac72d824ec6cab018680bda09c8b7a5c0efdef79ab75e2b +size 10576 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4d61940e0c092adf909f99dc0d702df5d6eaf5bf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20bba6941755f93523f784e8b11f30c1a43b46e4bf1b052764c1342ab27243a +size 9570 diff --git a/images/Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1f7fb5cef0789f7729ba38d9d588c4fb8d1fb073 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7144ea19136256207a1bd49a1168b1bb8f05fcbf4826586adbc2dd76f3803bea +size 10304 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/1.png b/images/Vehicles_and_Flight_Systems/Satellite/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..319220cd42506a6aff3969361542db1d254882a6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3669396dfa16d68e1e766fd474b935ae7c6ab2f1aea928fa3a4f0204f69b2cfa +size 348466 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c70bcafbd4050f77741f20ffdf85207953b8b94d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1392db06d32f77ff56cd4e9771b499a796b1f3af4c9c44fb6d0e950272d1fc +size 32843 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26afb2817d7f528aecb6a6a8104d4f919b322202 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31cbd79757f60cdfd3e942102317b76745b3d858da4892d2ca8f581b54c0def0 +size 35552 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4db4e8877c638643277311167f812f705accdf8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05c9b81da28321de7749a73ddbcfbb5222371dbdcb77da4b86fc233aed2d67c +size 263666 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..beed86cb0ab2a16f95c6d7944e5fd1d358714100 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3d443693bcd953707dc096efc76ea698c89c460189e32f92216d64cd947bd3 +size 138745 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..37dfc898e4f4ed2354a46ece8e7dafd418c1c24f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd8842e3ddf20627bef9e1cd8e4d6be7bcfd103b65c4e6e4fecbc047de77544 +size 33924 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98c942d0835007ba0bb50276c2a37920fa8f8c68 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78c4fa74f7463d2e26c0d47af50e2ec8cc79f7c0fc1f63f7865d8201ac9ca0e6 +size 700721 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96f62bdcd52f4a0a326c1df766d66313bedbf20a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a108bc2153420cf9d4388a7f75c219e51efc2ce06dd9f340b38d6bb9da408149 +size 192319 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5991be8332e9bde43443b403fdf93142bca82486 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3c00307d9053ec80f8a7a99c8ddf8313620cc636869e4547fc61d5bf9c4543 +size 303293 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e16590e5abb45022e357cff067ac9dddbfd9431 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:effc2d25f2d4fa73e24e059aa1438157f4825bb237b68f884e92d9471b1986fe +size 27488 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..5ddda5fd1eca9cd2c11849c5b595dcbf03ca5037 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3208260601ec5a0588d774fbd2084a6c3475c061dd032e2e97fae8b5ea054dcf +size 8724 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..aebcdf2c53c857104925e2d816fc83490c362e7f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a829d09c5c9e986fe85cfec75fd8dbde887f998d120d4f4946aad0b768294cc +size 3887 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..59f5aeb7db7df2a507c9b17d9946d82205298d5f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98398e90832d191c7a5e9bb7fe9f9f25fec0725635820f4e79e974d312abf39 +size 43480 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9f8e4faa63d4cf539d920cce2245b4054168218a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e78690cd051b790df52e7e32da17e7e7a1ea4861685ca746c99403a238472a +size 3706 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..03f1045eada7d14729a78d949fb1e1741bd7c241 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8d15d4c31227e9543e7891b89b6e873bf4861ce0c9e529443486df422ac640 +size 32879 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..df4f7e41acfae6a1bad7028ad2111e42c8ac99e9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c26ea1057ba371ecacdb28ee1c26283b39516f47140406c8e6ca5d2c79a3a5c +size 35501 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8ff70eb9094d7acd9c4f085280fd5873a835f555 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7959a9aa5cb613a88fb77873918dd24f3bc8d31b91e79f39bfa6c0ea5eacc202 +size 4144 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..226c9e3cc0e7c4da4a2c797783bb9008f880c75b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2fd7f23b28ef2cc52117eb546f8258fcc458fffc7e467262e00307914281a6c +size 6229 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..900a8246cf447ac12faac37d02d774f6767b0074 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392800fa23aa96083421427384a7275cea60ed2f397e0172d6b2432a23c81492 +size 75621 diff --git a/images/Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f278a6dd11bdf58b9bbc71c6dc91e2c1fd6392a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2e12db7d6dee9d80dd752b780d7a8bcad50c4fbafc3ee91c3fd376423dcd4c +size 18220 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/1.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d56bbdb0bed2b01458490116f8ff64085f3d7cb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6da39d658b928d4f7a707e5c2d75fed41994407d326249d8d7efe71fbf478f4 +size 56965 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44af054e14df846452614673afc1552e4b36da7a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9bec504fdf69543813f6eab9016277aa224003f367046c43ba94b1da5476090 +size 22433 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/11.png b/images/Vehicles_and_Flight_Systems/Scooty/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f7fb726b7553537e45812a8012974fef0e613767 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b29ff55df489d44ea3a21d4a35637d01a70cafc1fdcf19b310779c70cb2ea00 +size 266315 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03d5fb39a426d5826be35ef75323de1c041dd77 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3371ec726ffd36fffac2c37f6f654936546e2544cca14fdf91aa655c67ce9a28 +size 77488 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/12_2.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/12_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ddb0718bfd06dc902daa7cc6d66a058e75c3f0a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/12_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c4ba877b0ef77980be3b0d99ed4f496c31c0925a459af98f00a75a35736ba3c +size 35310 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/1_2.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc03994c40077ef4f2c7261d240e943b020be375 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/1_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da483521995cc49ac086a445f5c81e1da8a28f434a1487b5cfd8c0d90c0fae1 +size 36586 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d56bbdb0bed2b01458490116f8ff64085f3d7cb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6da39d658b928d4f7a707e5c2d75fed41994407d326249d8d7efe71fbf478f4 +size 56965 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80c94137c68ac2fe89a6a998ad5cbfdaa805eb6e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc109ea04ca6758f613318307d72a9297257eb174180561350c982b5ee01b837 +size 10133 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/2_2.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/2_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..101f1cbd79688567453e47608ae57c91bbe60f25 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/2_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e08caf3257bceeb7dc67f2453bc644a821ba23c6daad228d0f547068971eb6 +size 63595 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e4a06532083576cb754480531b1b94a9ab5f045 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7163c9ab9e78ce9796275cca8a49d46b22bf1586184643d4e1d285eaa8bfe5 +size 89562 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4879a88b31f4d6e3e7636d299cb4423572989e8c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee7be8d15f7a50b1bb6dcf3ee02502690cc6f27a85d9b6762376a5f8720e7fa +size 61129 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..972d0f58ebc1e7661e698a00cc08db5c5503d075 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049f56ad27a83b9f9920debe0931b7c8c8e0e4a81d591a0b93c0e07079960792 +size 126259 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d33d8a3ef677c7cee3fc39aff289a7e11a9c7fa9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00913e50b229554ba6f157e81f2a233dbe8676a09d5781e4bb047d90b92d5ab8 +size 5720 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4376c7e8a9cc3ef8032e9b580aef92f9a3f26b1d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d2bbeac07a088586fa22deca1183ef2fc2d0e2ad79a954ca88ff19979a86ba +size 20334 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44c20535cd9958c17dfc257173034f5d0b95f3f4 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8baaacf8d493dcf1333c0c0779938e17f8e91090ebe9f0b31a06ff58b62f5ae +size 416152 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ee425212a8439f96b334e9e1bbccfcdd0195a99 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2118a097d58b18a3a56557d754e78a4071a2c2f0b034667e4f7ef87e79fc3ae +size 44918 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Natural/9_2.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97a7ec6c5e48f7485807c46102e5623d69085b9a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ad61286ca3805759814808c4f419c1c490955e1180232ec61eac4db9f3da38 +size 68911 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/1.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2f02e138d8ada0c2cfcfbe5f278a59956ee778c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06604470c75fd613d2fbe4099e11f2eb0f57185cfa11bc9a7cb6f069da07d891 +size 54066 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b7ebede85fb3efc55d2cb8692dff91bbb4f916b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffce435fe9e01f95f961feeedf4f486e78e2698f7981567350ad40c67baa42a +size 13864 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57c51bd925750352fd48434b167c3597d5fcf3fd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b64f9336cb522455f5ec31c5c1e71eb19cb90dac72c74e32b102f9d151a5da5 +size 35149 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cf1d5b64010828d14b6519fe0e37057d001252c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feedbd7918378c43d148a5ffe100ab5abb5d3ed74c238e22950baf61159a2309 +size 46414 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..169a7a229d94dce2451dcdf32d2a93d75db966ee --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acd9d0b5d8f2ba23850545e0765a1961193f2149f1bfe0b40423f660efeff78 +size 580408 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48c75c9497eb0d3b4e0000a9ba81d139cdb187c2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c981dd8a0e7c104930ffc0567c7b1b647dea22ef0b8661ff850f73e9903ac8 +size 12150 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f991cc4331210f1688538217667f90d634b44954 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96592a14c29539f89fd0601d47c225749e87c0be9ce994a9d9cd24034c05b7a2 +size 10594 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5018c5e56900deaec33b867fc71e22e23f51d852 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d450d60b14379aa9cbd0325b61b555f51857cad33950c4aef999e3095995d52d +size 11379 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e48e49094949a0ffb695bf9ddc2362b65a5adf1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a8fe9972d9cd89929e0a0f96c96c90e3387341f96cbc7cade50a07c14a937a +size 25729 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6273dc80aa7d0f362386cdef97ccecf7c91b7328 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b96c86c215ed4456a5c2deceb8066ef778be86888e5162c9795335416fcdc728 +size 22104 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef4f53db6606166e73cede10ca47fccc26c7af38 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ce71973cdaba3098c63959730c44f27130678c5b08701f9f9a2dc79bc3a426 +size 38195 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b235f99f500271114940221e876849067c8dc8e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8cc14661d5defaf78be720a9cf091d4e0f0dc429896499335259cc637b28ca +size 12887 diff --git a/images/Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a4c2923edabfa41147697ab490e60f8a6abb439 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c956d04915394aabf287dc68430820d53a60cf1cd4681df9cbb051fe81e38f3 +size 37071 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/1.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fcb8f4495d9da1a06f2f15a6bff7398183215ca --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5054ff86b3f22c52ac0d9e6d597b682d3061375dc1d394689f560851caad282e +size 6663 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/10.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9938ce89958a3733f551c8cd936bc509c70021f2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcab1ce8e9afb0a4ef36f39abe08a40b67d5c3ab03ff0903dc00bd2f8e08c59f +size 7254 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/10_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/10_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4ba39812b6ccd92c66b3b33fdea7b76cd267fbd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/10_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21ddbfa7d3634351d2826f5a5596ecdcbc2a0a1040dedae03dc3413d04a6faa +size 279707 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/11.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfc6ebd0dc75f51b8b9a655332ab1355023d9631 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed2a3a76ac7cf8288ce2b3bdd7f29f8d869ab96e4c254db312c4d3c0c549e8c +size 8728 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/11_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/11_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1ba9803bc351b15136b863cb7c0ffb8438ae90c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/11_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f004dae8f4ad8a9839a7436c08fed7ccafbea19c42f51f4f3f0cd937d3002be +size 390210 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/12.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4573d9101501ced34e910f23b7c4c11659d05ab6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacc7240e8a1376e536d1722e4b0e624a74cd33e5f8723671f451f2c60ae6e99 +size 188125 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/13.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a9a0bee48503e031467b5e7ef946c4a5e2dc151 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ca17b038bad4b686302f61ef2fe7cde55fa4c04b543fe3f779332014669f75 +size 13187 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/13_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/13_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19f19489aab3267204ae243dfda8e9361c42d85c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/13_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5065911f328dea30d98eaa6ce2cd79318881da9cfcc8b103cab92826d99dfa14 +size 8235 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/14.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ceef1a6b33b640fc5b39800587b5fe979687340 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2ff51d9ec842b1bfcf8f1c6900046cfcf2e1483cea3f80375c1bac47a66411 +size 37049 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/14_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2ec92969a46bf03f12811ef135c22ef6912e172 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b27107f0fa99ee84e4418cdde5606494ce40ca8877af24cfbd863ef2fe0914 +size 62119 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/14_3.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..526b38bf54c05496f79b1c8f3a2f7226009467dd --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f113d5289c6b4db44974bd67b59026ae40b5e878fc0b4043832c8ca5826c8bd4 +size 56982 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/14_4.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bff133adf85a872233dcae9eb1ff79f9804522d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727990f3ca5b1a43ffb5ff621d8089f64d1d10a40104830aecbac2e976aa2369 +size 13668 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c492cedceae7168114663cae00f45dc7ba77f659 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b926bd77671f51b1919177d3dbd4e398e76e72f5ae0683da9ac909efe846241 +size 70596 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/1_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbfbccb8e223f3b8ba38612dcb9d9987d6d9befc --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/1_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a7ad506a99b2a960a1f3b40d1cd2cfe227bf6b60e9bdd97dff07cd1a99ef24 +size 1121075 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab8f8c38467c4aa09cfe23acfb826d37ae7cfc2f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8cebc9a5828db86d7e17000fd6055f8683472e3f1a9dfdf78c209fce282275 +size 51117 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/3.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c826c35e398f80a2bae0ce7d80e61022f68793d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac9b9597aab7b351caf71d862fc45f88b863983de13ac5ad511d765a8dbd513 +size 23352 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/4.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2464ef3d6c1e9c80b92f63687376e072071f7f73 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a9af1c2678514dd06b9f6a7698666bb4850ccd6e9ff27f892b2211bd06339a1 +size 14706 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/5.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..813f24da6d0731c8d7fade2268969a2c14ce2e16 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b6eb74df516453d25266f1aef7aac457be324f4447936c9c8cfa4f6c7f8941 +size 283562 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/5_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1db6dff91d1c954ae1877ff14530bd3325dc790 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/5_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3749a6876e8859d199138cfcbfccec6a43a42ec2959d71cbd2a766ad595a8a +size 297166 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/5_3.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/5_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5e59ff46bdca76fdadb00e72426cf14dfeb6258 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/5_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:957003f3066daf50d3a592aac2def3fd54e9fe0703f914e6de75804d9b477fc7 +size 41963 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/6.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b99a6f0bb99d54c97f4456c672404074282e418a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8f219c0ae2d1139976159db0d847f2224c5685ad072d4b03b6665643eabb74 +size 32712 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/6_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/6_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19709ca7f7f136d243a4de3e40bbb7a1c0c30752 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/6_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e61357f7a10c8b8839a022f1e6260a37b6aa4f71312f2f7b02702d8399cca23 +size 58839 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/7.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e3147580aaa3e868731410b598f0c08fdb7ee7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defa3e00ecf2d3850028dbdd8d5464fc278df1a38052a1c2d061a5727c80190d +size 19502 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/8.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40f93940263ae973e05c8236a6b9600c39e18448 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141ae698b2687965e6548960801fe272d72ef8a65e0a1a85977b121f20acb5c7 +size 90532 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/8_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63d5751d37cc2d39a1e18afc928648a92885ba24 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a843bade1bc65400194307beaf1af80f347cb40cdda3c0000cdd27cd3b1f9c8 +size 40227 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/9.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af1761a18313a86c63bba35b8ecf8f501be523e9 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eef2347d4766d810af874b7b3f3ecf93abf4c5e1d8994cdb3c0468d379ca1b3 +size 29339 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Natural/9_2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e51d626c003c126575db295fcd8597f40fdc13a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7213d0bf0f10184e43851806bd74a1f1b82f068a4be3787fce7661944786fec6 +size 57359 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75d4e7f7fa23910a1ce0ddaf5f92a7fc4a835c17 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d75ccbd5e319d3b5336839698dc2558ee5725f7be4aed37df767df0de13109 +size 94143 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b04fd06c872ee6c972b134503cfb3906627f98e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e096c2da1c864c76b832ecd37023c4c1372f94ae83c3ee83a6ff123fd948e2 +size 15994 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8a517e9c820787875d171be79ccd06aebd34cbf --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea8afb42fe8af4f5c32a176ccfe0613c46e834481cb41f70cf78a85f42081e1 +size 22339 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e30c8e1ee1ec2d711b3e2e1c09d77356b1e1c674 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdf9f0059fac708f41be693377cbed388894e61277226b5fe7fdd279716e66a +size 15967 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c0a5b1f2d61c7569a50edb6e485ad3f3c142feb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61783e5f78365be91aca39092c870536b955245da1b35a2f62e63e1c962f0119 +size 17777 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/14.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..015e2e583c48344060737ef2d2c6dbedac111514 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46a00308baf1bd791840d3728731226fb6af3a70a2d542d54336ae7f7bf6759 +size 18424 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png b/images/Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..573224424e5df57c078bbfeddaa052d47408da9e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c5f2010a546c59d8d8739c2459cd9498a3f116d71213a2adda6bf5415ea222 +size 1835967 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f22e20a42f72625686957bd51d41177151496944 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bad8a3d9c57a489ce88ddec0864fe424458127c17791fa0545dd31ac1b215b1 +size 22027 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d332a6a712616da70b177141e6ebd6d4b729ea9a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ae382cf9338c53f01a1b574495fb5d810c73445808ad4bac85683b6de00417 +size 33719 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..104c15f6f3f4303347b27906a70468f2d7950ab7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b84beb25d1ed04a4c064e980cb78d06fcafab23b145bbf13fcab9a45980ae3 +size 201310 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e434872304c367284fab7d6802ebbbe1bfcd6d7a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047d25e93810a319b7f8a52805aee866428b1b1f218dde89931b3fe01706f287 +size 66642 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1195bbff4a24238c6820225819c43a001416f4b3 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e396ee804ba21e2f205ac94db8017563a05ef4ca242833631df0a32dc465cc49 +size 80224 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e6a235777a1579477df7a4905f74b0fcca741bb --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b0645a5cb5448b8f34950b8866760ca25a8a3a5bc6bcd830b77ff5d69d89ba +size 20340 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f9262a7ef8e70657f27f217010c969656c064d1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a9797d1eb6d5b70390c8777d91db127945d731ff37aa8727fa44c9950bab86 +size 26129 diff --git a/images/Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg b/images/Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77b11bbbf604bcd7eed7e9ae4d10579a171166d5 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65467f1c4f64acafe8028f097aa38aa3a0cc117449a10c2d31d34c9db8f7e99c +size 23667 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/1.png b/images/Vehicles_and_Flight_Systems/Train/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..35cd8c81353a39a3582c9269cee0ee46cfbdc842 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8a5b8b44b1d52fbef211db8946b11bca0fa91c4e7527aa51c7255178f40d44 +size 113158 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/10.png b/images/Vehicles_and_Flight_Systems/Train/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..79ace8adc6792f48bbdb6b321190456286fc6db2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d690c28be0ebf95e889e76a65bec33b3779d2707be382390703c16167efb15af +size 154766 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/11.png b/images/Vehicles_and_Flight_Systems/Train/Natural/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2349238e9240c95154d08e283dbf27d79ab14976 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18467229c90ae690b6e40f0309ff3b4f1dcbeff8c8fca8c6ebdbb257c42af498 +size 244193 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/12.png b/images/Vehicles_and_Flight_Systems/Train/Natural/12.png new file mode 100644 index 0000000000000000000000000000000000000000..99538b813925b422d2411941877ad633ca685f47 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71461b776ed85d286474a42ae4fef77c7410069bb8bf06c4f8b6117ca1e4a562 +size 238808 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/13.png b/images/Vehicles_and_Flight_Systems/Train/Natural/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5938d8399282a74ccc2539c3867d44ae6839c12d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd7b254598b1a94d4ef7248954c541b67ee6287081c1fd4b17c9cfab689dabd +size 211283 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/14.png b/images/Vehicles_and_Flight_Systems/Train/Natural/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5cd08e3b3d19bea0c75c2ac1d8456758ed905ec7 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d854c4f62c89a0cd9dcf0639f6d630deff323148b466189ad1df329e4bf7fd91 +size 203174 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/15.png b/images/Vehicles_and_Flight_Systems/Train/Natural/15.png new file mode 100644 index 0000000000000000000000000000000000000000..4c66c7644c94ee73913294eff54acd53fef70c75 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38c07b804b290fd477f347d6f9bff3d4f2835af055fca8f702446fc65bf06f4 +size 248890 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/16.png b/images/Vehicles_and_Flight_Systems/Train/Natural/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6fe56febd6ecd51e6f4e14f4e2a0e9748b5c20fc --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca9aa1b5ea2e221851777fc619ea6ce6128ee38ee47369ae44973c1010d2798 +size 82827 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/16_b.png b/images/Vehicles_and_Flight_Systems/Train/Natural/16_b.png new file mode 100644 index 0000000000000000000000000000000000000000..94ee6d57b6fd1a53110fb12e5f25e2ae0ecd4808 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/16_b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7334ec2d4f728f63cbdf7816e3f2921100220d9d2ae168b4522e76567d4a9bc +size 60059 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/17.png b/images/Vehicles_and_Flight_Systems/Train/Natural/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0434ff4ace965cdd53e86444038507e41f048154 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:123eb55efa92352c265db524a76ec9c7b2307b89afa61ea65fb8f24c15998c93 +size 85073 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/18.png b/images/Vehicles_and_Flight_Systems/Train/Natural/18.png new file mode 100644 index 0000000000000000000000000000000000000000..7a84fe7a1b9047ed375f67a0e0aeee285c94be79 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ef201a16d9a1eaea9f769e6a703b54fd92bd2a57f34fcff7d3795f48fa2403 +size 90685 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/18_refined.png b/images/Vehicles_and_Flight_Systems/Train/Natural/18_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..7a84fe7a1b9047ed375f67a0e0aeee285c94be79 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/18_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ef201a16d9a1eaea9f769e6a703b54fd92bd2a57f34fcff7d3795f48fa2403 +size 90685 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/2.jpg b/images/Vehicles_and_Flight_Systems/Train/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64cab3862ad7ca4f77e9e004083d96bb3286623c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a3d42ddc0fd03db186e8447d5b5684312991cb71246065f7d091fa74e185dd +size 26006 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/3.png b/images/Vehicles_and_Flight_Systems/Train/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6fb3fd3915ae20e04fa9961da05c4b0e53618267 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8104d0b86bf75ee31776bc0779e5772ec927756e334ea7af195db382d690441d +size 62716 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/4.png b/images/Vehicles_and_Flight_Systems/Train/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..dc22a5b7f161e1ea84c7f5b3fb1f59ca6c14bb21 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e657866b10e6d017e20910f2af30aef54191d33762c8abb797b23f7559fa98 +size 289945 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/5.jpg b/images/Vehicles_and_Flight_Systems/Train/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49fe4320c9fa2af06ca521a9fb63c55cee1bd08e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1128acc3b0806a1ee4d47dbd3a08212deb80422e903a1eb5e72130c65f68b3 +size 76407 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/6.jpg b/images/Vehicles_and_Flight_Systems/Train/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d5b7f4bd29e44251210e5be73e425bcf57100f1 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3e6ec19e296bf165c12a59d258e0c51e017f48b7c75064a36e620eb6b9702a +size 116583 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/7.jpg b/images/Vehicles_and_Flight_Systems/Train/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73635cbdb18b3bdf51396e437c4e0377ac5f9508 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ffc60564409e0a1f488c140b8d70d2fd7c43fda51495112351010d38462b23a +size 48279 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/8.jpg b/images/Vehicles_and_Flight_Systems/Train/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63279f41bd3cb44ebd44ab5ebd94c7f9c6469f3e --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af642e0f371229bfa3dea966fc48276fcca94f97dc742670ca113d6aa26ed150 +size 29462 diff --git a/images/Vehicles_and_Flight_Systems/Train/Natural/9.jpg b/images/Vehicles_and_Flight_Systems/Train/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af42e369ae4ed0a35b9fac84a01c685534b2904b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47adaaf4868f4b47c40b62a434e7d7160ff9b4d0167992508b68b64bbf11362a +size 98864 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/1.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c38c00b919c7d4c69377e97684a6112440e6b5d0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa534a86380d91866634cbc6c62f96abf41ad9c6d2d2117cc80f057ae2167a2 +size 128278 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/10.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a5285d915f023fa4be6558f30c0da11919d0870c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773e9610f2144959630146656c50dab3cd9d41ab14492ac6ac5f4e276d480a57 +size 16757 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/11.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/11.png new file mode 100644 index 0000000000000000000000000000000000000000..23708bb3913543b0a679f7735c006e330228eb65 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476919ea7c7f75557776bc562c03b601e027a470ee1b26e1554d612a66f9bdc0 +size 22724 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/12.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/12.png new file mode 100644 index 0000000000000000000000000000000000000000..70404f60baf90c180341a835a7c7471778cb5e96 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283e77a1258846d7c59d442e414ee4afeb94d2ab4cce497006f946594ca9a45b +size 54078 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/13.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4a97f51826929385d9b59c93b563accf11b3cab6 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ec4a5416adb1a91487412eb1844b03825355f9c9dff07d4f4409e12afa9cbd +size 15875 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/14.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed742700fb355753435b98a497c3179b6d14813 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60b4e00d38ac3d39908d80aca4fb903888847c3fe63e99fdecc9b6922e1a50e +size 10972 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/15.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9c579ad3fb4f6f5709a56a94fa2d3102ae7cde07 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e20c747245dbe267fdf07ebae5e25d0551f6fd7b330b704ee17624d6aa58cdd +size 25271 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/16.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d27b1c159f31a2388565332329f8d1e14ffdc2 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e9c1d0f85f5ab5cbac57dd7096d6c0067552b312d887e08dff6e96dcb38973 +size 30470 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/17.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0ea176ab647bf4933c197e9c15c529a5d8cbbed0 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:559a42b262f8059e0a13c1f5257886f6635b1b71ca366cd9403a2df6205fc307 +size 21375 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/18.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/18.png new file mode 100644 index 0000000000000000000000000000000000000000..bcafdcca44743c88d1ea6d03e24de1e9bbbc659a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47577682bcbf1f7605a449a4354f9a282159400d802830d9974770e6901ab585 +size 38893 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..0c640a6a1ce4b5bf36f47c004c47bff72bd3b3be --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ce95a6285ec5b1408c69902345dff4ce7097f792d046b411ae91760a9c0fe9 +size 76675 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/2.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/2.png new file mode 100644 index 0000000000000000000000000000000000000000..640cce28bf79769066f16b75dcfb29674f44a75f --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286a4730de0b9771a4223c3fbcdece8b284a8d7001996de19a1bfc26324f783d +size 327080 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/3.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3072e318169e3d28ff94fa98ab110af95e501a --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222d811de6f7631b97b20d911bdc7a0e1f86130644f08df93e0886472ec81b2e +size 207509 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/4.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/4.png new file mode 100644 index 0000000000000000000000000000000000000000..161e5525f504c4a958f7385c61f454a76c43ef1c --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc4ee682335c4cc989ee690be942ee990cda3079dad870ac9cfa31ed6f44a4c +size 23407 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/5.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/5.png new file mode 100644 index 0000000000000000000000000000000000000000..553785101440a036fb48da10f9281a5002b732f8 --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d78f51f742576354ba1931a148dbf8b1bcfa7aea9832553f03ba8068d0cfcbf +size 336812 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/6.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ed59a258040dde011fb652d5f718c21bcbf025de --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e445b252f5ea8fca294cc101c5d5c35cd2a233000569daccb4fd84ac55c924e9 +size 180631 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/7.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/7.png new file mode 100644 index 0000000000000000000000000000000000000000..89a96fee0f9c2f907312a250923f365a37adcb5b --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d966622b500ffa7d320c548f1596dae79a73ac7c41787b7d22157602acd118 +size 186006 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/8.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/8.png new file mode 100644 index 0000000000000000000000000000000000000000..57348506e17c707c56bdbfd86f259cd586b13bbc --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982be877ad863054716dfc182c751aa9b3f9f59af921958d5416f153422e1fb9 +size 241800 diff --git a/images/Vehicles_and_Flight_Systems/Train/Tactile/9.png b/images/Vehicles_and_Flight_Systems/Train/Tactile/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f60813da0c17be487231259bcfb1b4d3545beb1d --- /dev/null +++ b/images/Vehicles_and_Flight_Systems/Train/Tactile/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a890795c07a224eac87fafc2a97b6296578fae9b8de18173e91bfdef0a7201f9 +size 330994 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbafc6f2ea6d23f9264aa9d25af68f1e37d2f0c6 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b69ba84d2784052a58afab526a2f54b24d167e31f6f1840afc541160054c730 +size 7257 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f25515bd4f97d4d039d7ee4ea05fb61b3333c53 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b419bfd52c3e29783435fff996238f04afd27d09b992a39bb3747db7d58d294 +size 5029 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99df2d4b20418105e6a2ffe86ded12ab5f72b099 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b011d100b5136157f271516d84cafb01552d1b6370beba1561aec4a0b553552 +size 33497 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..37ab69fbaf75eaaac7848afe1aa17e66a39608ec --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b66d6af99fd06d092135c30a5b7a51070284276bb020cb6bbeeb612518bfb8 +size 16882 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c045f930bf29bb73c6235d7de7b4f3b371669444 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3924e997872b708b219e45781ae7e531f52ebf108ada858fa8ef04c8e7039841 +size 15759 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7796a2d52f958364f2ecc310f0f01e0892cc4022 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd300abc3ed560669d738bce7d23141f490ebc5db014b5c3e557e9136a4ce54 +size 24286 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c3d1ed94a22906d3dac81652d4b743371ebc340f --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368f70356cf9c5462b2c2f0639449d8369162d9e0f9db701abc611610f20be0c +size 19207 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e09ab6427259184c1f72aba6a7f3381a0803a3eb --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5176b7842f7ff248d625ff6345fe7cd7699a1b287d5a7afb45c22ec573f76b3 +size 14780 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95e0126c0330562c8849457b4ce1155af3e62cb1 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25684eeea0404f03634d496c4d7765978fef75b1119e948ad335afc89a655466 +size 6190 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..fc39aa3a69569bae6f86ebcff0b2fd2f8d68cabe --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020c816b0967083c094752136ed0747f13d51f67d37b32c228f09e4c2bcd0153 +size 16637 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bea561ac80bbb47081fb8adb971f0a8e060b796 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21fbf5ca4257ca7938d8d88729fcb55ba1363652bfa10f9c93811b0d76d999e2 +size 9293 diff --git a/images/Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg b/images/Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e41f2827bd2761849724900836b44b002c23309c --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1951f20e2a86ff08d4f2f80fe4c629c65b24115a5c06af23ebf45719a74ac265 +size 16494 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/1.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897662167ed5aad5eee1d02997a82e1430ddd030 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3016bbac5298aadd94a482b3dc2b639cb495a35498ad6d13da0b386d07c48c91 +size 15718 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/10.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f78146461f901853bd20be98535e29704ced72b --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2312a6757c8805df91f684f94acefc399bf683302f736be6517c8e7094ba8b37 +size 12636 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/11.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b7ef5ce514870a6d015fbd6f56d08cc31588f05 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae177ff73011adb40afc6dc2d22eae3468a9542c95826838c6d2e31b54298e8e +size 11814 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/12.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d806eb4c28d92c5743b01b2e4fcb02f68f703a4 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594d7b8de90bebcd4c492ae22beec2d187b76493827a1006e582b90da20f43d6 +size 16286 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/2.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dbab635fa0197c35ff22b85b958fc71ed7a3925 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d552e0a3ce9e3ca554bcf3d63ea393f2cedf873023c45a0b59dc03b3b538d08f +size 12423 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/3.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ed75157dfa26c07de90d38dbd0b91587aea98ee --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5b2877699a06edc9ebd455a3b5ac053c0732f8a520761b476b4fb2fd6d728d +size 11727 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/4.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6277f9775ea39334f6ffac2077c51d29722a70fa --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d2fbddea03bf0d6ce6540156151a49f8249bdbbbe28fc825bbed39a5a54dee +size 14590 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/5.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3ffc604b924a4bbdaa5efbbb1022c46823899d0 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c5d36813bf1302181e9eb03c66882c34dabd863262b25ed6e56b35835e6071 +size 15489 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/6.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ff345d034125365ed398d1dc358181fe0e186c0 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3213d8fc2ec53743ea24331801bf73a145821da9ffc87126633743506be1fce +size 16626 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/7.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5529c29516cbec42dd8df0435c1018d441c027d --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8719d5257b4e26de48f968fdcc40c5aec36a6831be04c30081f541cd1dc46791 +size 7562 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/8.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7eddd847d5629c0c097bae44e6f18a9d43bebced --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860c70db4afe4e66d336ff87b72fca74326dc5e6522ca998487b1f58427f45d4 +size 20567 diff --git a/images/Wearables_and_Accessories/Glasses/Tactile/9.jpg b/images/Wearables_and_Accessories/Glasses/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaa3984ffecd5a2a183cd6f41da3808d790ee729 --- /dev/null +++ b/images/Wearables_and_Accessories/Glasses/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6dd1a9783bb289796b3d55aa2c4c0510e7af628c4c10e821ca2e727a69211ba +size 14265 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_1(2).jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_1(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..509bfd72adca48b4b9b2330a675bcbc32d5498c8 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_1(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25941858102ae16320aeed62a9b085871cf4f4639d224efc272ba33b41a09af +size 244387 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_1.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..921114f71a9124af0fcd62eca827abb1dcc90432 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:919248c4a6e1e41827e346df51db0362d87b4937e57d6360c71f0ebb0023efab +size 50194 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_10.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99d3fb897b3f8df90261b0b22560994e2512351c --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a204e2ec978024cf8b44953e8e646a16e021a954ca356b318b52a43012a6da6 +size 21878 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg new file mode 100644 index 0000000000000000000000000000000000000000..3844442b10102eadddf732307dc6275cc498d928 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b492e42f21fb75cb96d4e5961336daedd8a3a46c730b90f3a89970eac7ff8c +size 8930 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_12.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98b35d4bdb57d311eaf3af1c4a781bff16d9b1eb --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd9fffe66c889a58cba4d7ff4afc3e8b660269a448926e3daffe52b51dbb5ae +size 42151 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_2.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bae8cc824cb9c906ae8fe79ccd0a7eb44d2aebd7 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d00b19c9138f2a21bc37ae9cc5d2b809f5c2f3776e1cb4e82257c4f79cbc95 +size 4038185 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_3.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc85895a652f427faa91f4769bde07bd1b3c6f9f --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173fc4a2a535f1387f7389f71b5ba32ca631aec5dedbc89096ec67416ec79931 +size 63209 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg new file mode 100644 index 0000000000000000000000000000000000000000..b282f80913d4fe045cd80a6b900e26b5930fa138 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44809f37a49bca56981bafb0509b032156e02bbe773dbebaeed759cb9f760036 +size 31129 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg new file mode 100644 index 0000000000000000000000000000000000000000..c15ff1564f48d60a81273a9af6ca16987f5a7842 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7b7f103a232f9bba298248e1a5dd7397d153d4588cfc92fee1534a793b7806 +size 68113 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_6.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..722e5523d3b6d41d0bc560e5e3a9f588dac04e7e --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c86b1320071a84316d5e25bf7c62b6bf1a6902ce0bbcbe6d8f9c0eea79de70 +size 101291 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_7.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14f9e5b94f069594864cb8f0ae9016c97e84f07e --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d50dbf99874f316b4bbb4c101ea9fed5663fb8868f433c19a22be3c1340e13 +size 17716 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_8.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ae966245a5330f7b47cf3d86e93e566f1e73395 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81bcb57246194180961b9b31856ae09f153c0b0e5981c9134b8b5d3d8c850dd +size 31183 diff --git a/images/Wearables_and_Accessories/Hat/Natural/Hat_9.jpg b/images/Wearables_and_Accessories/Hat/Natural/Hat_9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d60b93f8683274dcaf20f46575a640ae7d027b7 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Natural/Hat_9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eacee04983495a8123edb09113882797fa0a2f413bb2f2c5c12c2aacbeb2720 +size 20964 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/1.jpg b/images/Wearables_and_Accessories/Hat/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d11ffb7794dc53234c503e67ca53ece60127ab87 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809481153b7b6ae92b0ec96423d7e729cc880b7d1d2e5f025db202ca2d1dc9c5 +size 76504 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/10.jpg b/images/Wearables_and_Accessories/Hat/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d4d81ae9e432807dc5fc56f960945a5fc968ac2 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7576dafee2b656cbb1cba302f54719eccc45909e0e54586a8a6e33967630d26e +size 40211 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/11.jpg b/images/Wearables_and_Accessories/Hat/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..070069b70a592cf171bb5cfe70e2cafc1b982529 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a864ea0db350f1aa0236fd78766e343a11e9c60d02e2d26df2d46ad6883bbe +size 14375 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/12.jpg b/images/Wearables_and_Accessories/Hat/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..387163723fea2a0a66d4b88b3625cc353f3c8617 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23595c463b1a8fe9bc8fef0cad934e8e199f2802d42249144ab354782341a69 +size 44131 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/2.jpg b/images/Wearables_and_Accessories/Hat/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5327fb820e9afbba6fb389e82a2643050ac6e0d5 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d48995375e301f624ff998b621af7368a842e56c3bf0f4739ba20f285feb24 +size 17437 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/3.jpg b/images/Wearables_and_Accessories/Hat/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76e8d411d4e6907c86e3a60fa387833187aca09c --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb435da8b5602f76d599f63e09839201b612dcc527ba45009f0debcac6e0c8c +size 25557 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/4.jpg b/images/Wearables_and_Accessories/Hat/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a72b4e157ca3113618a929b001b119fa7b206692 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2254cc5e3555b02dcc3484e750e4d7bc66b363ecab6f5470d027364a95d0bbe4 +size 44009 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/5.jpg b/images/Wearables_and_Accessories/Hat/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..688c9ed836631112e4a99c5fb4f1dc983525f38f --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e94ddc1fea9cb9abf6b7433d851354382c3d3c9c71893464168697fe3ae3e7 +size 28796 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/6.jpg b/images/Wearables_and_Accessories/Hat/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..122477394438ba20d7331ccb0f63f1c343fd79e6 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe916598253c8a59e255af04537a54ebd6d76d4cbe2256f4c67c8f3a729af31 +size 93527 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/7.png b/images/Wearables_and_Accessories/Hat/Tactile/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b4cd7bac78f8ccc2093bbe1464e6272cb599818a --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d58662b728be6f916e5e378808ebd66522d0a6c3510f3426963e79bfb169531 +size 614137 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/8.jpg b/images/Wearables_and_Accessories/Hat/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06f6405321659b68c1f76c8805e0e7c7bf837a97 --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2ae51449485522ccca6bf761dcd3bf9acbce1e984af82d3ca7da797181b8b0 +size 35164 diff --git a/images/Wearables_and_Accessories/Hat/Tactile/9.jpg b/images/Wearables_and_Accessories/Hat/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..852af22a8cc6a2125cfa9b8cb77e09022e40721c --- /dev/null +++ b/images/Wearables_and_Accessories/Hat/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cb7604cdd6b0184b68ae32e9ee400d2056cc542035208f8df6b7b3905a1f0f +size 59996 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45d71039eb6c6ba0402d5cff838d2c0c713be0d8 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd1bb4367927b4f6f0372dcca7e9b2e998c6f15f48d4a6f7f81e64eaea97c6c +size 15713 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b02b8493108e3a922dd6cb93b79dd0898259b55c --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f5a11d42a1b8f78fdf06f49dbd11b039f357adf91e3ba6c010d333067c7361 +size 14100 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d234056813faf86410637708f0d37f38869b0162 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37ee1f2ff21b9fdbb3125a3ee2e9434bb2466558e261d79907beee0faf2c75c +size 16588 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..896cff8fd83e7fb4300ddae7930d36ffbb1dc3af --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff61dee448766100fb19f0123e2e569ea2fefeeff938821b0d549a6235b633d0 +size 21583 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..243ddba1ce7537c09975af8584cf3cd96002cd92 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a18bbeec021a955ca0d12a582a42fa734790137396ec95f5b9fb512dda0c63 +size 28094 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..197ffbb730a6b2990119034dd62f752f3104a5bf --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8d5c089b20755b4e39468d68923d9b93b4190229242435b55338dfe241dc99 +size 93915 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/4_Headphone_Edited.jpg b/images/Wearables_and_Accessories/Headphones/Natural/4_Headphone_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..889537249bb67bf9eae0193f79ff60c195dda1e2 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/4_Headphone_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee4758313558a0fe7b2e8537fe81c8245e26af72dcf11fe8381e5b5dccfc7bb +size 50778 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fabd34ab87497f675a75b4a3938cd0f1411eb09e --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27402a80438621d97b8c327f8a18a4201b6bb53744128c3c357a4e73341a4a0b +size 13700 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40d90b39508d40519ee40d86d9fb23a2bd7ba291 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2b4cf4054ce9d8d7adc27bdb2735761e615dbe2bf1d85e03c5f7db3912461c +size 26815 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a834b3c81791c638730ee686d27c4808085c8d00 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff72bbebc7fa772a430c4469d0062dd35cd630f421c40206f1418d52cb1808b2 +size 55956 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/8_Headphone(2)_Edited.jpg b/images/Wearables_and_Accessories/Headphones/Natural/8_Headphone(2)_Edited.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c1a4207d450136ec4790788bff8e718470b81b3 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/8_Headphone(2)_Edited.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e750ed1dc678559dcb1560e1caebe9a6b281cd1d5e391f1e6f56e7292b7c7062 +size 8946 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b05d769e1fc8602549e3f003ba2680409d1069b5 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62f50717f32e9158b77bea11947c9f13ac9f7b76b9bd6aaba751db2239d1b73 +size 21504 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone(2).jpg b/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone(2).jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e0b0bc61b1b2b046d810cd1b94d4c02134a02d1 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone(2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dff0c3acb992f410379f18dd44c82fe8ec41146443d1838b43e78e27a12a8a +size 27607 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone(3).jpg b/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone(3).jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a6d4581fc73920b4d73ee536639ee40a5550095 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone(3).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50495097435740dea438b67f328a9075757c284ce4284618ebb227e5388655e6 +size 29223 diff --git a/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg b/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dae96c3d5d47c162157e4beecbccdcbeb3d4e48 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44b7d4b08108ca49b4992f3d3a0ce0d8a41813a1770c77698a938441a6da894 +size 14857 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/1.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..604b3a403f7a885556896c77a0a3d192f600023c --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61279ecaffd601e13f7df99b6eaaa41ac8403918529fbeb35c995cbc165d614c +size 52040 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/10.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a20121b2eeb89e67a9adeff3a85e0c085cea4f08 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a8932508fa35323371f763a845f941bd9e7c8193218b61b8a0b777d428efb2 +size 27214 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/11.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37a36736dde424b62a01b3ebeab0e041e4bbabc8 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2528efbef23911cc98d1914ae9692b091c5f6544466d92cee162b8822a57e6b8 +size 134832 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/2.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d48d1243210a6127526a2cbbe3105a1be3769db --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4358e5014e530c5356964be7e7013b501ab96e54ef401c2d20fb8a5db0f741 +size 52882 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/3.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a94991063ef39b6a6e5c52a218166d6490ad773 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3cdcd16b0fd53677aa1d2fdabb90007c5c9ff18d025e781b18a22cf9bdeff71 +size 109516 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/4.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..336733828ba513dab2b72954abc58860e6de1133 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:019cc3d1224af83f59f5f6fd095dc8b7041bdb7f0c5ae5b11022e566b4539f9c +size 40411 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/5.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a00fc778812b75b4ae3ae3f93c6fc74479b0393 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16019dbfb7468441ea79b5cda7a4ab6167326bf895ff41efb9b35a9856837d82 +size 9837 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/6.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..644795fcb6d6b929f19ab716c2ac17db3513d4b9 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10abf91b01db583300416b6509f5b33232fae4b0efb8499037e4baf1804a98e9 +size 9853 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/7.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..472dec5384b71bd5705f36d5f2d3ad12688047ce --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c957a8bc669e8d390420c0a37d80aa77e113616011324d1f0ec03b139e7579f +size 76771 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/8.jpg b/images/Wearables_and_Accessories/Headphones/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96e88fd4176a14311b728aa71e12153cbd3b8909 --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a2c4d5076d5ee4ee95ee1f1d434ff404ced8b5815561dd53f72a50a684ba34 +size 13776 diff --git a/images/Wearables_and_Accessories/Headphones/Tactile/9.png b/images/Wearables_and_Accessories/Headphones/Tactile/9.png new file mode 100644 index 0000000000000000000000000000000000000000..06a72e4af0ea6e71b609ef4e562129aa017537be --- /dev/null +++ b/images/Wearables_and_Accessories/Headphones/Tactile/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63f0eee2b4bbf23e45f8e9fe4b03fcb1ade518d94efe9dd24700d9181e2fdce +size 859681 diff --git a/images/Wearables_and_Accessories/Ring/Natural/1.png b/images/Wearables_and_Accessories/Ring/Natural/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f81e440cc477ded07fd348f3543f9aee5c51004e --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70447fb33d9c3e82b750d678d208b486a52e3d8df744cc509ca5e71b5e992fca +size 110544 diff --git a/images/Wearables_and_Accessories/Ring/Natural/10.png b/images/Wearables_and_Accessories/Ring/Natural/10.png new file mode 100644 index 0000000000000000000000000000000000000000..aae5b4b1a86449cf7cb0d9be3cf8796670df7da5 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c926d06b91dc76fdeaa0ad75e702df4fca6686d589e79ef137f97d420b2a6108 +size 217153 diff --git a/images/Wearables_and_Accessories/Ring/Natural/2.png b/images/Wearables_and_Accessories/Ring/Natural/2.png new file mode 100644 index 0000000000000000000000000000000000000000..475f2db740fc8b6304bf98018e3811c863c755dc --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d585ab0c1fc8e97fef6e00099381ca61ec04c394feea6884b609dd5f01e5170a +size 40685 diff --git a/images/Wearables_and_Accessories/Ring/Natural/3.png b/images/Wearables_and_Accessories/Ring/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..110c35aad1160ec5ba231db4db429725f09b98fc --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194a0fba84ec89cadd7dc1a7d0b9517ea366d748dc5331621b9e2b55b1b60bd5 +size 99888 diff --git a/images/Wearables_and_Accessories/Ring/Natural/4.png b/images/Wearables_and_Accessories/Ring/Natural/4.png new file mode 100644 index 0000000000000000000000000000000000000000..dd96ef379ba12a93b7055764ef77482b6f05bc09 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66da8f6ae2713556779a5e3e43963cf69fc27a0b9fb250bf66bff576c2bff83 +size 35668 diff --git a/images/Wearables_and_Accessories/Ring/Natural/5.jpg b/images/Wearables_and_Accessories/Ring/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..419c0046f2350fb3e2f008d96b635eeb0e831756 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606e8050aed130238d344007c6c87727376db6d5d1089978c87661bf4a486e39 +size 45330 diff --git a/images/Wearables_and_Accessories/Ring/Natural/6.png b/images/Wearables_and_Accessories/Ring/Natural/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f6438ef6f813ccd4db8d93b005dfcc3305fe039e --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcf7386825b329169446f2eaa46c105c7fb879e0aa2a283b55c40a0df221e2b +size 78206 diff --git a/images/Wearables_and_Accessories/Ring/Natural/7.jpg b/images/Wearables_and_Accessories/Ring/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b49a173e687381fb68fd50e94a4b2a49b1f5f1fd --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08655c49b9c3a159ceec2afa317c998e1f225917e937148cc6cfcf6a17f130c8 +size 60813 diff --git a/images/Wearables_and_Accessories/Ring/Natural/7_refined.jpg b/images/Wearables_and_Accessories/Ring/Natural/7_refined.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b49a173e687381fb68fd50e94a4b2a49b1f5f1fd --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/7_refined.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08655c49b9c3a159ceec2afa317c998e1f225917e937148cc6cfcf6a17f130c8 +size 60813 diff --git a/images/Wearables_and_Accessories/Ring/Natural/8.png b/images/Wearables_and_Accessories/Ring/Natural/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2923541df0896504271880f8b1dff74a7f2fb3af --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0141217682d90cb75e7cca67358328b2f8c9befca5582236441ffad0254818 +size 23446 diff --git a/images/Wearables_and_Accessories/Ring/Natural/9.png b/images/Wearables_and_Accessories/Ring/Natural/9.png new file mode 100644 index 0000000000000000000000000000000000000000..72585f530ebe1e3a2c4785a292c56e98590ebc18 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Natural/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73941f78427df953ddfcd4347a02a56a24e54f363a13131e82e98d0f12d4e22f +size 210470 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/1.jpg b/images/Wearables_and_Accessories/Ring/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33634e88f8aadd302a125518281ff740476599eb --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7b5dec745c4e59c3b8c78ba6415a7683b5763d8e900cfb155be8dcd502de15a +size 122877 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/10.jpg b/images/Wearables_and_Accessories/Ring/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a0163eb416d3987c5cd67fdf243b519ce4ddbda --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9db12df6c6bed3950476a482d5839dbe0525c44acea703445417b004c816ca3 +size 36820 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/2.jpg b/images/Wearables_and_Accessories/Ring/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eebafa7da36294a0db883dbbf224457b997c37f3 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7ff2e1c16f884f34fab004791d93acf3e213a2864c326727645389b7ddd535 +size 114730 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/3.jpg b/images/Wearables_and_Accessories/Ring/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f5b6907a870b31d169ef2808ca2cf5ad672f15d --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6640d4f6bc419255fa23e82180511f46eda55da53d7e9b178c2a3c7385da23ac +size 49935 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/4.jpg b/images/Wearables_and_Accessories/Ring/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e802c762d8d3b96ac4510179a673dd9f219e140 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77aa7109f36ffb9ca883c6fd20893c3b7edf906498938b6c74dfe1ace7b34740 +size 27565 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/5.jpg b/images/Wearables_and_Accessories/Ring/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f2425d0f8ce4c9ab61b6c283c94af1438166dbb --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8ea1583a01e8967e6c1c9558ac955404a7a835fd1d911a5cb48abe55333c88 +size 19240 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/6.jpg b/images/Wearables_and_Accessories/Ring/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..614b683e66d5fa43633ede29538ae1c0b698d39a --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b6f59e2f03aa2091775c79473cc19a1b687b58dbdbd1a79534aa7f233255b7 +size 19296 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/7.jpg b/images/Wearables_and_Accessories/Ring/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc46ac948d02cf558da73e7f9efd08fb3d3bea70 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e45e9e52c1985025c26a0291d050709da9c4c8b564915d2ecb1ed00f15aa39 +size 20478 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/7_refined.png b/images/Wearables_and_Accessories/Ring/Tactile/7_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..a36b1c8b4612fac6ac44ccbb2f6069abd716e2d5 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/7_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62511df8b0f37bc74d33d3e1c79993f0bd13901c7ebdc83257894e8745581724 +size 1340393 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/8.jpg b/images/Wearables_and_Accessories/Ring/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c558ca3b6bf1df52dc7b305d4cd0aecd1aa23eb --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4430b211dcde333eba175c309047330f7c0cecadb436cbfbf4b2ff25ad7dd926 +size 21120 diff --git a/images/Wearables_and_Accessories/Ring/Tactile/9.jpg b/images/Wearables_and_Accessories/Ring/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f2a22c135b29838d99e600309f86fc00ad903c4 --- /dev/null +++ b/images/Wearables_and_Accessories/Ring/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5641e58c764c29551cafd834c3c1c4957b0c82a7ca0624d8381570d21938c5d0 +size 30965 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/1.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1ba169c1683c03f73691b3e1468a5b2d47d62c3 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa297237402f0892b9d935a4571bde9aa5e4c4ea9592a0d3ce8fc12e78a273a +size 17046 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/10.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88e5175caa17d2fe32a2821bf37bc1c91c680727 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db0a8fbc7eca95f32a7e9316f045a730a11969522b788388411efddbadc6892 +size 19370 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/10_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/10_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8911bd467889f455ba4f7a64c450d2bfde57d06d --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/10_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0161986571b41937231d7114bd0865a7515e91b29607ea56d95679f5c637dd60 +size 18170 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/10_3.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/10_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc3260ed95772a64e791db5fe13f4f14a6df8c97 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/10_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959380c506d056ae96434dae39e7dbf0bca2e05197912b0443ee1a0c733a2329 +size 11998 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/11.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfe2be1d0322f65ec738ceb28f506eb1d0aa82dd --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35033cf95f71030e129285bafd5ae262836c976334ac301f4bde1088d819f311 +size 20429 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/11_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/11_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e831c0b171113d2bef738fd27cf6d83fbbdd23f2 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/11_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47a3a436206f6fa52f706b7151a0746dde932b3315f8b4a1c830075f7e9f611 +size 22995 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/12.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1785aed75ab85de01634cc64cd4f0a919fe6dbe2 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3b05234414626fccb620758ba787f911b539626ad4730ad37d2830d5b3d2ba +size 20858 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/12_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/12_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d65e36c69fb4fba1115db56dcc26e201e2f1b61 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/12_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b4f2136e0ca2d696c58d7eee2685a3172fedbcb6c1d047052c2ea819dd21bf +size 11388 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/12_3.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/12_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5194e51e59d8a380259c7d45193ff78ec544f9ef --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/12_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea2bc4b0154732702ed4e5be4a9efd6f2f675a6d2797dcf54e8877ea8e43bb3 +size 23823 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2220db048d6d40aaffe0c79567c35e8aa48bfc2 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c1bbdb8d25c6c5422a1154e2103937cc04c8bd19ea346516e6e6bc07f33610 +size 406995 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/2_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/2_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6967eb9adae5c6e7eba3e7c0d0480124d5da2fa4 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/2_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3daffd2c9a218a37ab86159b9ea95e36afb98a8981d800b6159adac53e96ca31 +size 60739 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/3.png b/images/Wearables_and_Accessories/School Backpack/Natural/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ecf525259a6be5bd2247e6d21f3a66bc9a34474c --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de515bda4130606523cad8dbe5a0f6646481315fe33be2e72ffd6e2c2e27808 +size 256117 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/4.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9db0e1d8a9e43f14f08022fc558e7aaf65308021 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52cf8f9341b8a45a8327fbe8b74712ee40fea22dc07cf2e165cfeb5bf7a54162 +size 68852 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/5.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a32d219a10bf5b968ea2a3f88268deda40135fa --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0811397482003185a5a395a04ac7eaff339d4444be94852193833bd2e8498e4f +size 62490 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/5_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c436b9d402ffc4996ab47a8ed20d2abc7b9d20c --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/5_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5bd3d683fc6645087cde35e00fe4a70d07bc9c7459a0189b48cf093ae53c30 +size 50992 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/5_3.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/5_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3503f39a15deeab9db7b9500048840888bac7783 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/5_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb9f5cea3a4aafa397f72ca132e3584a567340041cd96971e0664e2d7672985 +size 36900 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/6.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73f610bd7ab5c8a657e829f46b154c36a4ef2b63 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c95b63f724d5fdd4d1e274d41bc2a0459090d519e192e9cd7796fd4f17d1b3 +size 47467 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/7.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba6b34dfa2e8387080c624a6b8e60bca667f3c06 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fcf65648b0a5d46f4f7569c2d50680234bd39d4025d4c9a5ba49d8c412fd483 +size 5674 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/7_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79a6849d6fba1d7cc4ff81e435d2baff7bfa9df2 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/7_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf104faf04baebf1a4e357922c256ff12844a82f3e1ba7e77fb10178ee97803d +size 31731 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/8.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3439a2434c38021486657c4c0ecb0f1d34360c47 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebc48c0c81ea1c63cb774cc5c4c68bfe7417aab0901d462f6af925b97fa6209 +size 11205 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/8_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0196a4fc80db5e4b8be7b2501b78969ce8105533 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c4448aa6eb7d79ce9c94eb38996bf4769903eb1d30a333af5c88466df4ad49 +size 165471 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/8_3.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/8_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98cc70f29fbcc9f9116af13b1280be072763f0dd --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/8_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b441be5bfc088b0277284b5bdc3c9704b1cfb11dd909f59ab819d07747e6356a +size 79709 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/8_4.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/8_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c768029954e8d8dd9e2d94ac642e8a9ce736983 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/8_4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902bcccd6802b6e8a7452cfa0b6e7e57eb47910606e057b20b6496090b1a4c6b +size 13362 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/8_5.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/8_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19396d42ced23cd3ee3a1fb50786c7265a7b755f --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/8_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aff92aeb7b4119811cdb784a180dfab84000fc9b80d03596cb913c3758a8388 +size 36873 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/9.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70d55662f031fe002222b7dde2ea4c71c30c8bce --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d955a9c524b20b3a8e738d012497a19eee79e8fcbaf1d34b0e78245bc84b681 +size 31242 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/9_2.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01d7cd6abbb532c6a91ebe90156f478aa6dcf6a3 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa32c08dbf85ea2b286ef434ef7e74033ce6e9e61c1382736cc68eb6d3e73fd +size 32762 diff --git a/images/Wearables_and_Accessories/School Backpack/Natural/9_3.jpg b/images/Wearables_and_Accessories/School Backpack/Natural/9_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52c7fffee3985dfb1c3bc10dc97a38d101a62cee --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Natural/9_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8ad2329491183d24613551f8d867bf5d29c1d9e00afbb3cf291d446f6e1a43 +size 59259 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/1.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..832356974e1ba0d3aa2dccbcc0cfbd97c1799578 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d99f8fa6f5bb1590e355c8b35638f50a1e4ac95c9064eda02d8eb13f2f34d96 +size 47624 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/10.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8230c87b6cffd3c32bdb5d26ac2f780a250872b --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6d224628cc4aa02641feb088016b9e9829b020167e3f17a9021d904a73ff08 +size 12049 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/11.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e81eaa697112f05addc53c0a6bee24ff461ba97 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bdb377df4a972d3a7aa34919b9f1698be9c1680e257acfafc4716d62aab1e52 +size 12801 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/12.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09ebbb97657ee6f38a07dbc8560b2c14a5c683f0 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b767ba1a83d5aa507e0d0d102a84fb0736b8a10b8ee93982d4b22f1fdcabf129 +size 18618 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/2.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba461f222474aefa9ee1100f3b945d3ed2654719 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abca9e226559cbe0b1360ad24b4e9eef5cb17cac644109928cc267b9bb99155 +size 18872 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/3.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d700d7da4491169e9fd40bf7dfe563678342b44 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ddf822d33787aed2b4747a7f2e794ead4a47b0b38f541213cf0b667e69724a +size 16352 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/4.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2098f2a51e68434a8d21c811bd9e55990d2b149 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e496cdbc12820c7ca7554636dda7fbed80f71b711dea951948928f428beeda27 +size 14007 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/5.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bd88a489be1b368e83ab9e533d190f3d82a7b80 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bca1b9cfe152b7f44d24488f9dc0231b7f3bafc8790869b386e41a48dc11c1a +size 12179 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/6.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bcdcf647c642470b08c265c7110cd6a788a505c --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974414c5710db63f8e4f6ad68d7f6cb4ccd738296d598751825b921ab6190594 +size 9266 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/7.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dee22b1a34e1a8393f7e783e9f66221386305f5c --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1cbab92ff793c364667ec3732407ce19ea57233edbecb75de1f8e704a5450a0 +size 29287 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/8.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3720302f15504787192ef9f38dbfedd16665c360 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee0af1cf72f0326fe23e6aae37d56b073d5121fd8bdd6a41c7f6cd08c824bbb +size 40339 diff --git a/images/Wearables_and_Accessories/School Backpack/Tactile/9.jpg b/images/Wearables_and_Accessories/School Backpack/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8357a6a9f94df08e6a9d41d3d17c4cde30e15b32 --- /dev/null +++ b/images/Wearables_and_Accessories/School Backpack/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f951a4d81937f17d0fd762e37b65b6e6b8e647992fa9961cbc0b088b84b024c9 +size 12054 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/1.jpg b/images/Wearables_and_Accessories/Shirt/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e23f7c66b6fcc1f478eb3af558cb3d3141be362a --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162257b5aabddd32fc60da03e1bcc446a99b4d6f5fd5a1b5d7ffb64503f7e8f9 +size 284709 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/10.jpg b/images/Wearables_and_Accessories/Shirt/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d48af417d5eb99137fed6bdeb69c465368f2fdb0 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b333708e88dfd9cf7617a007d91d7aa338aa1d837fd97cb5e75cf5ce079cff21 +size 25208 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/11.jpg b/images/Wearables_and_Accessories/Shirt/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95632fbef89eb5c55759f07c7787136cbc7a9a84 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211498fcde75bd1bbb9e759a41c8ab823ee184388918c8058dce2b20cf0788ee +size 46150 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/12.jpg b/images/Wearables_and_Accessories/Shirt/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ea3eda5af6dd69b6784af06d4797efdf74dc39b --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485e00ea59368a641a8a25c0a879170be3c9a2c8022b5448c2c3532bd8f33549 +size 111901 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/13.jpg b/images/Wearables_and_Accessories/Shirt/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c1b84900f2afc14a2ca0c24c49a9b7b940196ea --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0838fa6f83a2027078873be03ba12310db67f4e118f22b38043732a5627cbed +size 24023 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/14.jpg b/images/Wearables_and_Accessories/Shirt/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..930622e115045d4ce21522e578ecbb0feaec7dd5 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd876b1a69647a8a2f68c1724449d55411f8b5d29ff5bae70d552aba5f315c20 +size 116124 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/15.jpg b/images/Wearables_and_Accessories/Shirt/Natural/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86dc453ef9379ec7ff4bc52ab3be40579de6ee9a --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924c8a2e5c88fe7ef21f81b7699b7da80b176f0d98aaccf321e5d9ba133c9ec0 +size 27297 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/16.jpg b/images/Wearables_and_Accessories/Shirt/Natural/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f74c806c2e52a129411697e56850e3014fd0160b --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467aa412a7eda8ee2b7894fa15d7bcf364e73431dbb350f1b8c074830fca2c64 +size 37918 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/17.jpg b/images/Wearables_and_Accessories/Shirt/Natural/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c7f99f08bdcb7411224bb871af12d1d9cd96f0 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05795ecdfefce92688208e4187611ce2fcd18642a0ad5987bfe181358c0ecb16 +size 142797 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/18.jpg b/images/Wearables_and_Accessories/Shirt/Natural/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..657567bb0ae3da50c0ce0fa5e1030f9d33e6883a --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0467f2ebd6330238bd2dc25f0da1ccdee72feb8188b857fa420aeb60c2f5d4 +size 236930 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/19.jpg b/images/Wearables_and_Accessories/Shirt/Natural/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46d569c08453329494c2753fbbda0a6ae6351416 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e221fac529b29ddad35385ef1fd68bf427adf8809b2e7b51eb30c34e00c96ea0 +size 17853 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/2.jpg b/images/Wearables_and_Accessories/Shirt/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91bc3203b3665624137c05e2811ab3b06117cfa0 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebd13d563220b87489aeded0bbd806ada3c0f7d408bdb922e2ae432bc62e834 +size 13456 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/20.jpg b/images/Wearables_and_Accessories/Shirt/Natural/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ada6b3387c6de1232595968f55eb622d0f69730 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079b1dfd09677d2c72a238f53dc8368045b2b770b370aa3e75b9e921e068fdfd +size 64881 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/21.jpg b/images/Wearables_and_Accessories/Shirt/Natural/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75f9e6f74c176b9918e09b2f1adfc7f81a98e645 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e615199311b5c60b26899f90528b68e3721c0506067daeebbd639815820b86 +size 152485 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/3.jpg b/images/Wearables_and_Accessories/Shirt/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e53b3a9d7e6c66894dfddb6b4a121ced7e64dc9 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0cc7919463da7c1568a4f23d5d14d7ad249ecb32f85606126fb89b132d3dd7 +size 191248 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/4.jpg b/images/Wearables_and_Accessories/Shirt/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c953d2cfdf7f85af07d3de1a7944e20aaf219fb --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c565a021bb6ca2d27816441ac2f82937d50f6c3e656bf0c0dc06bccf50358b4 +size 51431 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/5.jpg b/images/Wearables_and_Accessories/Shirt/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7e293e6336b2f8c0f6e3b34d2f0a93908ad7e47 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fa3c5b25da3f8e564e7ef3a1d5d264d6a740aeabe45dc37a781590bfbd5027 +size 15404 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/6.jpg b/images/Wearables_and_Accessories/Shirt/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57e2f7e6ecab9eb883571be72e26693df2da181f --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509d705391bc0613e2f813a8ffeffa1f17b91732f5996dfaeaea133538b343c2 +size 22139 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/7.jpg b/images/Wearables_and_Accessories/Shirt/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cc8c3a6d92a0d31d52635177b00b13ced105bf2 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a75fdad9b2d347ffa05a76bae8d88942a11e6a4d82cd6883edae2a018ee5cb4 +size 46607 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/8.jpg b/images/Wearables_and_Accessories/Shirt/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..834f8654ccc26ee3c8c8aeb24d8b5b7691f39bba --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1b27dedf4b99181bb118ae855c68b163ac2079fe7d0a742f2697ca85c67f71 +size 246403 diff --git a/images/Wearables_and_Accessories/Shirt/Natural/9.jpg b/images/Wearables_and_Accessories/Shirt/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc417b633182c79da926f9bf0b76bc766b2e40c3 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20248b4f99da9faf73efd8ea050287f4510bda569a406d0041a3c2b38d3abdb3 +size 29208 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/1.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5af4a31be1946465befa259a0f050973658ca780 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f8e3f5557382bfcd0e163c04cf6de3bea67cc8e6233c1b74e59bb3258bc6a3 +size 52098 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/10.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79979029c6862ba5f06f7688547aa16c52decb53 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccc63ad43f1673cd49477b60d5f0bed7300cbaddabcc4caefe4d40ae6de78b3 +size 100984 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/11.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d42bc7fcb64fd785f45a55c3746c0c8bd159676b --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29bcb49372d5ceac58e0011aa51b62d2fa775363f79752edef243b8e37850d23 +size 31703 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/12.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e89fd352891d19a1bb90f6f3ecf06f792007a2e --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdabaf302d5a9e1710a98d0992fef97370473cbef4fa71263553e599ba30848 +size 13865 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/13.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf458d415d1bed177c2fb2ba7cbd968fa1bd9aa3 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccc1c38e8a7bd80527db0d40f276d49c8a05463a06c89f89655326e649ac0fa +size 97332 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/14.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2aff411c679fcd5e31a56068875faf7b8f47541 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b23ecf2c5b66395a93328114be4980d2861b3b676f6a6c0b7188d05fd0ae4f +size 32529 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/15.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9c799a8f27f4879a3e867cf847fa5da41dda99c --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb404b1cb4cd24b195fac575cc8ef09891245e797590e718cf4bb66f9ab654a2 +size 32129 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/16.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38c3ff97b5674607a4548ee64f24093f84c35e0e --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02505ae635dd3e22cb636dffbd2019b60e0d910799604a04589af05bf231e05 +size 58285 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/17.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4376ceb1c4860cef21eebd99ac97124166a4bfe6 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16532d712a2a6c745f0a6bb240b74ada5d6f9cfd590db6e402030e5e8a669fb9 +size 21167 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/18.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e83954bc36c7f1598b2952be4bbbd70a021ab5c --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c94c357ba3dfe929551c7f189d1471f4e03a4766ef6dda41518bd1f85c34a4c +size 9080 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/19.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26eb6a24f35d1b93d3f00678426d98dfb94c05bc --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59151859393b41cf08a4c4565457bbdfa19b58481c13288aba2d7dedca974d4d +size 30441 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/2.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8647e7b9a6a58bb3f23f7e0e851a5be098bfebaa --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168a1f6db14d0b81a805a566b1cb64a6ba8875caf28bcd53da8bc3951f5f5d08 +size 264582 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/20.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..995a1b062565abd5abdee5677a2c64ef5bff50d1 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5184c8f69a88963ef405b828198edeaa124221fab66fc076b128e16ee39c5e84 +size 9341 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/21.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77e37a116622a47dfdd54e5194e9a8417ab18a3f --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674db60e13a9e925e97461e7792d81c85e91b439ec249713d0299598e657a4c0 +size 31876 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/3.png b/images/Wearables_and_Accessories/Shirt/Tactile/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab179529250fcc45984cc2ece31182950450f30 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4f23cafe1b0b0a2f7967121b3009650920588627e7f43a5b7f4eef3f1c4a61 +size 628098 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/4.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e99aa22da1afbdc3c47546f0ec2235da71cbaae1 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4573db7b3883a91cbe1d5dd56c4f41aa29999ba08db2ae5a5c0dbedc2d2116b1 +size 349968 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/5.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25b709726a410c6551ca97099aae6c67e053393f --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3081cdf5d27ab5f1691ee9d5055a71fa41f98443b7da1bb8fb48759e61a57b59 +size 193597 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/6.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b8b44d1add2ea1a65c730b839a4bd0fef7859e1 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4364d697c266a0520511e941bb9ef831b3ae813e71df369d27f8744e135e3bc +size 219407 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/7.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14dbc02655d888e88e7468c6f9322ce716fedb94 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b8d51dc847aac587c5015690a25e89f7edd828a06c8bc3c5236b0218d0f944 +size 137312 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/8.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec5610d22b65965fb6dc2042b58ee5716d65c982 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551cf1bcc18e2b5106d38802d3897b52d1fe03630f4403880bea2c23214bb25b +size 237857 diff --git a/images/Wearables_and_Accessories/Shirt/Tactile/9.jpg b/images/Wearables_and_Accessories/Shirt/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f11214d1aec261c64c031fcc8f62b4c9251b450 --- /dev/null +++ b/images/Wearables_and_Accessories/Shirt/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc4bd266aa6899e59a2239c50a0241a25759f359d80f0d00f6da622ded8ac4e +size 321556 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/1.jpg b/images/Wearables_and_Accessories/Shoe/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cad1546822dc4baf3783e8aecd24a0a28027cfd --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d3151abffea94ba8063f544aa37f6a8a111b27d94dacda71786cdc181310aa +size 12411 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/10.jpg b/images/Wearables_and_Accessories/Shoe/Natural/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aae105d9804d682e8f7086307dcb561d49c6239e --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de8211f9de4e4f24141ce25749410b87307ef97668f89de76d0ab64abc04807 +size 21591 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/11.jpg b/images/Wearables_and_Accessories/Shoe/Natural/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2148c4ff441496264614a376a59ea3da9648164d --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87f8be65ba0a7460461a669a66df87f59b2548917347b66fe3f7252c43cc12e +size 33057 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/11_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/11_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3f70074ab048db70daa2850d0de1d723363a6d5 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/11_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22526718981d5750da7f19e24723e9086561bc264290477c259f3f7d2d05cf1f +size 26480 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/12.jpg b/images/Wearables_and_Accessories/Shoe/Natural/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c01a592481f051cc6a9b0f9291e886b47d4a513 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca8d9fa07fa791132e3bd42ef9db57fb454eda6f5c17be629eb551200249714 +size 12329 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/13.jpg b/images/Wearables_and_Accessories/Shoe/Natural/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cd1aa037bf2feb43653e0abce71c22c617bfef9 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a83192a57b523308037f092942337098dd01af0b75c776f0941ea01048de1625 +size 19897 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/14.jpg b/images/Wearables_and_Accessories/Shoe/Natural/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0427017a4df45b549a3737d7b7dedeafa2784056 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a83c75c9bea1253f0298a92ce798c00f1322f87a2e5bee6e7654828b0a3353 +size 41739 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/15.jpg b/images/Wearables_and_Accessories/Shoe/Natural/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe25af641228dd73d88e0de5129a2c4bc82880fe --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b8db327ae94fc889bc0b2b0501118b5a524e72a803b9eb6f3398a21f59e90c +size 250668 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/15_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/15_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f8463aed552693248394db8f70cd4c616a802ed --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/15_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1578334ee4815734638d8e444c1dcc8c6626621c14d5f1aa90bce3443f9ba049 +size 14478 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/16.jpg b/images/Wearables_and_Accessories/Shoe/Natural/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea9486e14b65c80fa81e695dc835e22a5374aad5 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65c4e68d40b9700c396bcd861b5dd1fcb62321abc6b90bdd95a26cc1d6a51e8 +size 8740 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/16_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/16_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..221dfdca1076e56db421690748f1d3554690294a --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/16_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadfc1459da0a33b92fe10de158b0dea84fae54ae63e4bae3764d2321df7e64f +size 28286 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/17.jpg b/images/Wearables_and_Accessories/Shoe/Natural/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a094ba52475f1672b44a34d4af254d17ed1f5c97 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2680542bd0df9cffe77017b57c0daf1b91dd95bd9b4216fd5b53bab6991b0a9f +size 44717 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/17_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/17_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef07e558c7e6755edef614345890713a33284e43 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/17_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c814114466515e618c3ba47c659049e4726ede76847e385eb8d8ca0f52b071 +size 169274 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/18.jpg b/images/Wearables_and_Accessories/Shoe/Natural/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8d72f299ca382a30e1021472a27a0ff46a666d2 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdd734b122e9af25d634115be95edd86b8a83b24e83504d1984bb7c40c3de2d +size 40336 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/1_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db3503fca197400d52effcdba9c247436f8af308 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/1_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a63d6f09d0a9bd0a6a870888ebbbfc7ebff888145650125481f1688bd24948e +size 6108 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52a3a34d3e558436e23c535c9330b60488700904 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab06a3366678f2366f6373090f2134c5d07c09368402b9e50385825ed37f8d3 +size 42362 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/3.jpg b/images/Wearables_and_Accessories/Shoe/Natural/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07824fe04f34892e22d50b0195ebc6d73036de31 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a2dc9b2934685d60ea2c835b2cb784e09ed360406538b5709f96a39b5e5017 +size 27600 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/4.jpg b/images/Wearables_and_Accessories/Shoe/Natural/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..878c1e76fb20b559baaca3106ed7a7be2b858638 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccdaf487a94484a618f5e9c4b1e441547364e8e02e1d78b4e095ef80ac92bd6 +size 35582 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/5.jpg b/images/Wearables_and_Accessories/Shoe/Natural/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc1110d40c75353b52c605d4d8bc78cb9c63b993 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76095a709a8c0dd4f7e66164af502a66b1973d34de848cb83aa393e4fccc0e35 +size 20186 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/5_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14d2e6a4828068b435295afcdad8ca01c92f2f43 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/5_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b7e2612c9c3d868da7408e8a9b0bb63e928066105b874562386a4b133da615 +size 3637 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/6.jpg b/images/Wearables_and_Accessories/Shoe/Natural/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0845be2a51e534c6e474df54a1979ab5fff6af50 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530a276936a15f86222c1821308de430f01a4dc7394f4c261ad99208ccd8c073 +size 27404 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/7.jpg b/images/Wearables_and_Accessories/Shoe/Natural/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01366c76e710ebfd30836ccd01eae6f81f3e53fc --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b077ae8940ba473153f2e58d4aae962fe1767a84b63783fa6d0582b3825eec +size 33060 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/8.jpg b/images/Wearables_and_Accessories/Shoe/Natural/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8b41110e32a29fe0654500e275663b0413c397d --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0997c77c47f53773059736adf8592f7cf6045a23cd66a1ecc3dcdb704613ba0 +size 98135 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/8_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b7d38d7e98ef4e9b7113f6999dc05b0f86954cb --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/8_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87985d9a424832a6b983cb4cfcfecb7de5714b432d2666e284336cf0b5fa047 +size 22522 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/8_3.jpg b/images/Wearables_and_Accessories/Shoe/Natural/8_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..248cce6c3e27232f742c46888361644212c6d0ae --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/8_3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f38286d2ed1bb9c6b9c5edf2f1d345485738812eb128fae8fa60261f4504876 +size 8055 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/9.jpg b/images/Wearables_and_Accessories/Shoe/Natural/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3681e92ca864f827b99bd17924d7d6e305bb15b --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8065a13fa6c1b164c5b2d03e265946f6d7af9b3af466c8676ba08c49113cd1 +size 16604 diff --git a/images/Wearables_and_Accessories/Shoe/Natural/9_2.jpg b/images/Wearables_and_Accessories/Shoe/Natural/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5182a2add40a11f316e2e3db951371d68e91595 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Natural/9_2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b4120ee9eeeb8f75ab6bffe8e85836250dc8d05e2dc927823145f456d5c192 +size 53790 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/1.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cba52ca54bbb96d88bd59eae5a506af4408c7126 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bea483b83a92ef426a89351334bec30a402f08ddf872143157ce1f85736174e +size 18671 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/10.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25419a414d9db739d6388beea75924d67d95940c --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87829a67a8d942d1dc26a01e46e4b8b2c182dbf2b7c878068295dbe18711aa96 +size 29910 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/11.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d4d2c82959ea1b84a672eebef6153dce6074260 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145567eba5bda8c48a9d07fbe9107f15fa583d414e275f51f8ec4b3229cc29e5 +size 19196 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/12.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35678efff523c99b796503e62ceb5cf49cf8250e --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59c0859f6a1007565d63389b3cc13ef7e320af262c8f269ad6d9c6d26f371fe +size 30788 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/13.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b070dc993476261581093346d877ebeabc28f990 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473aa0365925d8042cd182ebdb4469618543875da068e41c9761e106e8bdda67 +size 67801 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/14.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..162bccb9fc46ec4ecbbb2a85cf6e34cd318bf1f7 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce3d964c78c4fa8c48a1fdf30d4f8e4ad33b2e99c217a87d40adb0f24ebaa50 +size 25606 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/15.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9c2da6e59778de12e81f795b2a1427e6f0628f8 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f304becadc9e62ea804ded6b08f77f6744c07b2c784d542abb62d367036317 +size 27808 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/16.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e39e641d6203036ba94c0b7acc8e8eb196cabd29 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3d77f69629b0186cca26a1a849ecbabcbc315c0d7c6e6a96d9fb60cbc6815e +size 16294 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/17.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..665864a03a361990a3e398c86ccea81da46185cc --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df1f8814b72cfe4de4c239d7682edd35509d259e82ae0505e6bcca16c078822 +size 35538 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/18.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97c52ee4eceb54c7577d840b3d8253f4d2d43f1e --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8304b43d2fd422e8431d605c086994bf2c176d3f7c39f61102f56c168c89a84c +size 58001 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/2.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ca37a37723f765749501504238542ec0b4340af --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c29f17e678a229f11a37952ba6ff524d6add73dc451d81bc021144800e2be8 +size 16963 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/3.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..161f9001b638f9ba4e3d1f09571427744429848b --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7072005e8af0da13a4bf679ad6e4954a278549a6d0db4fc49a4d7a29a2fa05 +size 16268 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/4.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57c013ed8ecb2b3b9ce1830f43ce0b703252d696 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94848828e40a697d31be1772a04918cee60f50f3e3a6cd815e75876a3053f43 +size 12447 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/5.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9721d718e9dcb3641f6062c723905532719d5672 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6615804559c798075e4b14c71b6d5d9b97e6e868d43d1f0d6047d87c0f202014 +size 27259 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/6.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20c5fe23ce1ce0cb41ffc04c946bef9619abdc28 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa07a0df98e15190fa9649efddf4ec256d5ec0a908ce14faaedc5e5fad6058f +size 42849 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/7.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29a9e3cad914b1e87f316906f3019315b7516a57 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42cdf43e08e13f2827101866ead1a4efb6945a1e9cad7dc93d0813e90e046a1 +size 24084 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/8.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a325d3e0bbbf85badb541e7fed8692a2f43324a --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45908ece15fdad9fee9dca76c381cc86851ca64070c267446381015d1d70252b +size 20529 diff --git a/images/Wearables_and_Accessories/Shoe/Tactile/9.jpg b/images/Wearables_and_Accessories/Shoe/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91446a9b90acc23eff2a68116fe4e232a363e0c5 --- /dev/null +++ b/images/Wearables_and_Accessories/Shoe/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b279aef1e6e203aaa4578c81e21ea8328c1d8a403b714f8f9bdf76f6f685855 +size 46502 diff --git a/images/Wearables_and_Accessories/Watch/Natural/1.jpg b/images/Wearables_and_Accessories/Watch/Natural/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fc9b6ab369b5370f36abde8ec1d2afaec868f04 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827375705051e9246b7b4ff6b6419cd8cf44e0271cf6201fdf56bdbab19a64ce +size 17328 diff --git a/images/Wearables_and_Accessories/Watch/Natural/10.jpeg b/images/Wearables_and_Accessories/Watch/Natural/10.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..10479c8180d0dce8a5afbfdce46dae4b5d2e3fb2 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/10.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f55757617e59b4dc71e73f0a40da40971765b3463119705e0f311d3543fe96d +size 50375 diff --git a/images/Wearables_and_Accessories/Watch/Natural/11.jpeg b/images/Wearables_and_Accessories/Watch/Natural/11.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..228c6acc5bfa71d893129d4b28d1a03e4d397cd3 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/11.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02dc806697b030a81975f5586f52df03dd375baac29df29b31d5a29def82bcf3 +size 86507 diff --git a/images/Wearables_and_Accessories/Watch/Natural/2.jpeg b/images/Wearables_and_Accessories/Watch/Natural/2.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9010c6ecbd78f2d2731724e272d55ad2fed2690e --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/2.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c82e0c5389a4ee3f36c36fee4ddc05f7e456343db7ab9c503d27659d0a7790 +size 14044 diff --git a/images/Wearables_and_Accessories/Watch/Natural/3.jpeg b/images/Wearables_and_Accessories/Watch/Natural/3.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b5f0e75999142676df21836ad40bbeaba2583e7b --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/3.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fbfb4cbceb93122086de209e70e96689aa4c892e7320e918103316bbbeef +size 13909 diff --git a/images/Wearables_and_Accessories/Watch/Natural/3_refined.jpeg b/images/Wearables_and_Accessories/Watch/Natural/3_refined.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b5f0e75999142676df21836ad40bbeaba2583e7b --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/3_refined.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245fbfb4cbceb93122086de209e70e96689aa4c892e7320e918103316bbbeef +size 13909 diff --git a/images/Wearables_and_Accessories/Watch/Natural/4.jpeg b/images/Wearables_and_Accessories/Watch/Natural/4.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..af021e468ce21df41e33de0d2998f43cb33345ca --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/4.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f23834f6f39737044223da8953bf86bb86c25b0ea37df63b9e0aa0d425703d00 +size 87671 diff --git a/images/Wearables_and_Accessories/Watch/Natural/5.jpeg b/images/Wearables_and_Accessories/Watch/Natural/5.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4c361928b9fb528cb1db66ec2b5cb61ca5ec7d43 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/5.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc154ae3cd6077ec17983abcf9c4a08d196148e7522e2554766b9657f329cba6 +size 63730 diff --git a/images/Wearables_and_Accessories/Watch/Natural/6.jpeg b/images/Wearables_and_Accessories/Watch/Natural/6.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..0f33d464af022d789e21257c3bce6f897a501d42 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/6.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf46ca031a1975d2fae376e3f3e5d8d82fd87174e9569a49faca10c197fe79d +size 168683 diff --git a/images/Wearables_and_Accessories/Watch/Natural/7.jpeg b/images/Wearables_and_Accessories/Watch/Natural/7.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..dcd997eab2a19a033cce65294c24a134428fef34 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/7.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bea796d7e775382a06435da15273fa20489241ab46833d2c5ac2d8742db8ae2 +size 111783 diff --git a/images/Wearables_and_Accessories/Watch/Natural/8.jpeg b/images/Wearables_and_Accessories/Watch/Natural/8.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..ed9051c4d37ba09766c7f6ec7e414e181e7e74d6 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/8.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7459e58bec471da76a6180b90a41451a092d0dc0033bfd5692cd7cd35ee034 +size 98822 diff --git a/images/Wearables_and_Accessories/Watch/Natural/8_b.jpeg b/images/Wearables_and_Accessories/Watch/Natural/8_b.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..af4503c7ed74b3cc8b9a028a6af86e4f2adb3e20 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/8_b.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d7e6b3711b4e5c7f9aeafc994f3547ea554e22221ae034e52ab79ac52fe739 +size 105753 diff --git a/images/Wearables_and_Accessories/Watch/Natural/9.jpeg b/images/Wearables_and_Accessories/Watch/Natural/9.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7873cc6b4d2f7af38a5adb7db88b71000e411415 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Natural/9.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b328619afff625f32ed7bb1057b2a8809368391fbdf181f8cc1aa0a1bd00f4a +size 67641 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/1.jpg b/images/Wearables_and_Accessories/Watch/Tactile/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c1e68a09d049301435ea12517ec97111d69d183 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78acf78c739de40bfd4ee2714660c878cf5ee7d00e6a61b1394e3cccfe57d23 +size 160927 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/10.jpg b/images/Wearables_and_Accessories/Watch/Tactile/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2362eadb0f8fd452f9f91e3d5ccbf0a3c443edcc --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527b97d6f30f91ba4b5cd7e5574e81246453fc539e896ad63221c0e958cb0e59 +size 58520 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/11.jpg b/images/Wearables_and_Accessories/Watch/Tactile/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8545ac45a142281d6f4ed60e747d378890db72ba --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344919e796d4f09c6b5dc141f65424886c6a8c0511a1ff499dcbed5b17fdf907 +size 44514 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/2.jpg b/images/Wearables_and_Accessories/Watch/Tactile/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4492f1f3d656e66ab5a101efcd560524fa0ba0df --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15bb9bbe5e63eac028005c1321d61a40845efcc911d93826c7517a7821380f74 +size 134080 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/3.jpg b/images/Wearables_and_Accessories/Watch/Tactile/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52416c8260f45b879ab2e8d2477c33d7512dea12 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae6268fc22839ea844b6fce57759365de198015ec3cb4a93194342e876e0a27 +size 101552 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/3_refined.png b/images/Wearables_and_Accessories/Watch/Tactile/3_refined.png new file mode 100644 index 0000000000000000000000000000000000000000..9a7b077520b412b303a5dba1aa9d4dadc3e1a370 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/3_refined.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55a3f6d23211dace651a205bfa90552fbcef42fa77cd54fa46e08d7877afd01 +size 2807377 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/4.jpg b/images/Wearables_and_Accessories/Watch/Tactile/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a249bdba8dfa318e9b4ea9dd725d468a0740f38 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ffd3a7f774c549ee4b5ca86592fcb478df0694fe68edd4ef02b3b01e8793de +size 65017 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/5.jpg b/images/Wearables_and_Accessories/Watch/Tactile/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48f5be12d33942c211930663e6fc15c0348f0613 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de4d95c85de3d95c362b4d1e58aeec1b959fae4338d38edb63fb4bf107ea657 +size 9102 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/6.jpg b/images/Wearables_and_Accessories/Watch/Tactile/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d459ba98c7693106c74406af260b5c29b3bad0af --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aead4819d58edb3864b0606acc40a93180b870eeb1e30f7cf1bb4ac9fd19e04 +size 7408 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/7.jpg b/images/Wearables_and_Accessories/Watch/Tactile/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..704b25c02b2b2f06ca057b9d13a59184d192874b --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25f6ce30557782340694eb4879c8c3dee8293bd86dc4864349382d845987d7f +size 32669 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/8.jpg b/images/Wearables_and_Accessories/Watch/Tactile/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef07d3a9fbc3a2556ac81de4421262716c79479c --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51dc1294b9d37a2b56b883b34ab6602e48125ac0b618920897990aface300642 +size 240722 diff --git a/images/Wearables_and_Accessories/Watch/Tactile/9.jpg b/images/Wearables_and_Accessories/Watch/Tactile/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c4b7c72e0a2cf9556773012cea87a5cfad63482 --- /dev/null +++ b/images/Wearables_and_Accessories/Watch/Tactile/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07f07ecdd660b04e72744cfda23928ffac8805f932e5a9dd5f511cd593fa99c +size 6574 diff --git a/processed/dataset_summary.csv b/processed/dataset_summary.csv new file mode 100644 index 0000000000000000000000000000000000000000..72804dfedd8d4b05e1f33978fa633a8b4f903d91 --- /dev/null +++ b/processed/dataset_summary.csv @@ -0,0 +1,133 @@ +task_id,option_id,records,positive_labels,negative_labels,positive_ratio,records_with_consensus_votes +F1QB,background_clean,325,284,41,0.8738461538461538,1 +F1QB,posture_match,326,241,85,0.7392638036809815,1 +F1QB,species_match,327,323,4,0.9877675840978594,1 +F1QL,broken_lines,193,0,193,0.0,193 +F1QL,fuzzy_lines,193,12,181,0.06217616580310881,193 +F1QL,no_line_issues,193,81,112,0.41968911917098445,193 +F1QL,too_thick,193,100,93,0.5181347150259067,193 +F1QP,all_correct,108,38,70,0.35185185185185186,45 +F1QP,extra_parts,107,17,90,0.1588785046728972,45 +F1QP,missing_parts,109,29,80,0.26605504587155965,45 +F1QP,wrong_location,106,7,99,0.0660377358490566,45 +F1QT,bleeds_boundaries,20,0,20,0.0,0 +F1QT,far_near_wrong,20,1,19,0.05,0 +F1QT,inconsistent_within_elements,20,4,16,0.2,0 +F1QT,missing_texture,20,10,10,0.5,0 +F1QT,no_issues_good,20,5,15,0.25,0 +F1QT,too_dense_cluttered,20,1,19,0.05,0 +F1QT,too_similar_adjacent,20,1,19,0.05,0 +F1QV,angle_match,194,194,0,1.0,194 +F1QV,view_frontal,194,30,164,0.15463917525773196,194 +F1QV,view_perspective,194,0,194,0.0,194 +F1QV,view_side,194,162,32,0.8350515463917526,194 +F1QV,view_top,194,2,192,0.010309278350515464,194 +F2QB,background_clean,210,204,6,0.9714285714285714,24 +F2QB,posture_match,211,0,211,0.0,24 +F2QB,species_match,211,0,211,0.0,24 +F2QL,broken_lines,202,24,178,0.1188118811881188,91 +F2QL,fuzzy_lines,211,15,196,0.07109004739336493,91 +F2QL,no_line_issues,204,147,57,0.7205882352941176,91 +F2QL,too_thick,211,1,210,0.004739336492890996,91 +F2QP,all_correct,166,67,99,0.4036144578313253,131 +F2QP,extra_parts,171,30,141,0.17543859649122806,131 +F2QP,missing_parts,170,46,124,0.27058823529411763,131 +F2QP,wrong_location,171,11,160,0.06432748538011696,131 +F2QT,bleeds_boundaries,211,3,208,0.014218009478672985,68 +F2QT,far_near_wrong,207,2,205,0.00966183574879227,68 +F2QT,inconsistent_within_elements,199,20,179,0.10050251256281408,68 +F2QT,missing_texture,193,141,52,0.7305699481865285,68 +F2QT,no_issues_good,209,13,196,0.06220095693779904,68 +F2QT,too_dense_cluttered,210,1,209,0.004761904761904762,68 +F2QT,too_similar_adjacent,210,1,209,0.004761904761904762,68 +F2QV,view_frontal,206,47,159,0.22815533980582525,14 +F2QV,view_match,210,210,0,1.0,14 +F2QV,view_perspective,208,23,185,0.11057692307692307,14 +F2QV,view_side,212,0,212,0.0,14 +F2QV,view_top,213,0,213,0.0,14 +F2QV,view_undefined,206,25,181,0.12135922330097088,14 +F3QB,background_clean,59,56,3,0.9491525423728814,0 +F3QB,object_match,59,37,22,0.6271186440677966,0 +F3QB,posture_match,59,46,13,0.7796610169491526,0 +F3QL,broken_lines,58,15,43,0.25862068965517243,39 +F3QL,fuzzy_lines,59,11,48,0.1864406779661017,39 +F3QL,no_line_issues,58,24,34,0.41379310344827586,39 +F3QL,too_thick,58,11,47,0.1896551724137931,39 +F3QP,all_correct,23,9,14,0.391304347826087,15 +F3QP,extra_parts,23,2,21,0.08695652173913043,15 +F3QP,missing_parts,23,11,12,0.4782608695652174,15 +F3QP,wrong_location,23,2,21,0.08695652173913043,15 +F3QT,bleeds_boundaries,59,0,59,0.0,22 +F3QT,far_near_wrong,58,0,58,0.0,22 +F3QT,inconsistent_within_elements,58,7,51,0.1206896551724138,22 +F3QT,missing_texture,58,45,13,0.7758620689655172,22 +F3QT,no_issues_good,59,5,54,0.0847457627118644,22 +F3QT,too_dense_cluttered,59,1,58,0.01694915254237288,22 +F3QT,too_similar_adjacent,57,0,57,0.0,22 +F3QV,orientation_match,28,27,1,0.9642857142857143,28 +F3QV,view_frontal,28,16,12,0.5714285714285714,28 +F3QV,view_perspective,28,6,22,0.21428571428571427,28 +F3QV,view_side,28,5,23,0.17857142857142858,28 +F3QV,view_top,28,1,27,0.03571428571428571,28 +F4QB,background_clean,34,34,0,1.0,34 +F4QB,configuration_match,34,34,0,1.0,34 +F4QB,object_match,34,12,22,0.35294117647058826,34 +F4QL,broken_lines,95,23,72,0.24210526315789474,46 +F4QL,fuzzy_lines,97,7,90,0.07216494845360824,46 +F4QL,no_line_issues,96,37,59,0.3854166666666667,46 +F4QL,too_thick,93,21,72,0.22580645161290322,46 +F4QP,all_correct,96,26,70,0.2708333333333333,37 +F4QP,extra_parts,99,15,84,0.15151515151515152,37 +F4QP,missing_parts,98,38,60,0.3877551020408163,37 +F4QP,wrong_location,99,5,94,0.050505050505050504,37 +F4QV,orientation_match,68,62,6,0.9117647058823529,41 +F4QV,view_frontal,69,34,35,0.4927536231884058,41 +F4QV,view_perspective,68,10,58,0.14705882352941177,41 +F4QV,view_side,69,22,47,0.3188405797101449,41 +F4QV,view_top,69,0,69,0.0,41 +F5QB,background_clean,20,20,0,1.0,20 +F5QB,configuration_match,20,17,3,0.85,20 +F5QB,object_match,20,18,2,0.9,20 +F5QL,broken_lines,151,32,119,0.2119205298013245,136 +F5QL,fuzzy_lines,151,1,150,0.006622516556291391,136 +F5QL,no_line_issues,150,59,91,0.3933333333333333,136 +F5QL,too_thick,152,55,97,0.3618421052631579,136 +F5QP,all_correct,104,35,69,0.33653846153846156,47 +F5QP,extra_parts,107,30,77,0.2803738317757009,47 +F5QP,missing_parts,107,54,53,0.5046728971962616,47 +F5QP,wrong_location,108,0,108,0.0,47 +F5QT,bleeds_boundaries,45,0,45,0.0,7 +F5QT,far_near_wrong,45,3,42,0.06666666666666667,7 +F5QT,inconsistent_within_elements,45,14,31,0.3111111111111111,7 +F5QT,missing_texture,45,17,28,0.37777777777777777,7 +F5QT,no_issues_good,45,1,44,0.022222222222222223,7 +F5QT,too_dense_cluttered,45,1,44,0.022222222222222223,7 +F5QT,too_similar_adjacent,45,5,40,0.1111111111111111,7 +F5QV,orientation_match,175,156,19,0.8914285714285715,3 +F5QV,view_frontal,190,13,177,0.06842105263157895,3 +F5QV,view_perspective,185,16,169,0.08648648648648649,3 +F5QV,view_side,185,101,84,0.5459459459459459,3 +F5QV,view_top,190,23,167,0.12105263157894737,3 +F6QB,background_clean,90,67,23,0.7444444444444445,34 +F6QB,configuration_match,98,19,79,0.19387755102040816,34 +F6QB,object_match,88,10,78,0.11363636363636363,34 +F6QL,broken_lines,98,24,74,0.24489795918367346,85 +F6QL,fuzzy_lines,98,2,96,0.02040816326530612,85 +F6QL,no_line_issues,98,35,63,0.35714285714285715,85 +F6QL,too_thick,98,38,60,0.3877551020408163,85 +F6QP,all_correct,36,1,35,0.027777777777777776,29 +F6QP,extra_parts,36,16,20,0.4444444444444444,29 +F6QP,missing_parts,36,15,21,0.4166666666666667,29 +F6QP,wrong_location,36,0,36,0.0,29 +F6QT,bleeds_boundaries,18,1,17,0.05555555555555555,1 +F6QT,far_near_wrong,18,0,18,0.0,1 +F6QT,inconsistent_within_elements,18,3,15,0.16666666666666666,1 +F6QT,missing_texture,18,2,16,0.1111111111111111,1 +F6QT,no_issues_good,18,2,16,0.1111111111111111,1 +F6QT,too_dense_cluttered,18,0,18,0.0,1 +F6QT,too_similar_adjacent,18,0,18,0.0,1 +F6QV,orientation_match,78,39,39,0.5,18 +F6QV,view_frontal,88,34,54,0.38636363636363635,18 +F6QV,view_perspective,93,0,93,0.0,18 +F6QV,view_side,86,6,80,0.06976744186046512,18 +F6QV,view_top,92,2,90,0.021739130434782608,18 diff --git a/processed/dataset_summary.json b/processed/dataset_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..cdf72a5c3c7bd9bef384908feb21c6b29469b888 --- /dev/null +++ b/processed/dataset_summary.json @@ -0,0 +1,47 @@ +{ + "total_records": 14095, + "split_counts": { + "train": 11348, + "val": 1341, + "test": 1406 + }, + "family_counts": { + "F1": 3290, + "F2": 4832, + "F3": 1050, + "F4": 1218, + "F5": 2330, + "F6": 1375 + }, + "task_counts": { + "F1QB": 978, + "F1QL": 772, + "F1QP": 430, + "F1QT": 140, + "F1QV": 970, + "F2QB": 632, + "F2QL": 828, + "F2QP": 678, + "F2QT": 1439, + "F2QV": 1255, + "F3QB": 177, + "F3QL": 233, + "F3QP": 92, + "F3QT": 408, + "F3QV": 140, + "F4QB": 102, + "F4QL": 381, + "F4QP": 392, + "F4QV": 343, + "F5QB": 60, + "F5QL": 604, + "F5QP": 426, + "F5QT": 315, + "F5QV": 925, + "F6QB": 276, + "F6QL": 392, + "F6QP": 144, + "F6QT": 126, + "F6QV": 437 + } +} \ No newline at end of file diff --git a/processed/family_splits/F1/test.jsonl b/processed/family_splits/F1/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..58ff814c4a4def7d2021dfd0be0511b9118e0070 --- /dev/null +++ b/processed/family_splits/F1/test.jsonl @@ -0,0 +1,288 @@ +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} diff --git a/processed/family_splits/F1/train.jsonl b/processed/family_splits/F1/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..28f928bc36c54cb3262d318998260d28174e1203 --- /dev/null +++ b/processed/family_splits/F1/train.jsonl @@ -0,0 +1,2682 @@ +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/4.png::Animals_and_Creatures/Rabbit/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/4.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/4.png::Animals_and_Creatures/Rabbit/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/4.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} diff --git a/processed/family_splits/F1/val.jsonl b/processed/family_splits/F1/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..71d6fb49538bcaa2e01c7ba16da43dd5b55a20ff --- /dev/null +++ b/processed/family_splits/F1/val.jsonl @@ -0,0 +1,320 @@ +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} diff --git a/processed/family_splits/F2/test.jsonl b/processed/family_splits/F2/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ecbb80af328605bd2074f11bf9bf73914a0d9400 --- /dev/null +++ b/processed/family_splits/F2/test.jsonl @@ -0,0 +1,524 @@ +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} diff --git a/processed/family_splits/F2/train.jsonl b/processed/family_splits/F2/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b0e7f066493a02ccc2b55f95c6f9c882e1114a73 --- /dev/null +++ b/processed/family_splits/F2/train.jsonl @@ -0,0 +1,3846 @@ +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} diff --git a/processed/family_splits/F2/val.jsonl b/processed/family_splits/F2/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..317d7d5a9c532e8a7583c5c3f7aa514a761ebb57 --- /dev/null +++ b/processed/family_splits/F2/val.jsonl @@ -0,0 +1,462 @@ +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} diff --git a/processed/family_splits/F3/test.jsonl b/processed/family_splits/F3/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8edd0b63745afbd1eedd858a711500a6d2024824 --- /dev/null +++ b/processed/family_splits/F3/test.jsonl @@ -0,0 +1,102 @@ +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} diff --git a/processed/family_splits/F3/train.jsonl b/processed/family_splits/F3/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9e6f99663b32ae9b9956ff9b5fcc932624ec30eb --- /dev/null +++ b/processed/family_splits/F3/train.jsonl @@ -0,0 +1,856 @@ +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} diff --git a/processed/family_splits/F3/val.jsonl b/processed/family_splits/F3/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2470dba1f3215d471664bc5cc6ef908311612de6 --- /dev/null +++ b/processed/family_splits/F3/val.jsonl @@ -0,0 +1,92 @@ +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} diff --git a/processed/family_splits/F4/test.jsonl b/processed/family_splits/F4/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6b25bfcf41180e4dff24be2a33ee14fd29bddddd --- /dev/null +++ b/processed/family_splits/F4/test.jsonl @@ -0,0 +1,140 @@ +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} diff --git a/processed/family_splits/F4/train.jsonl b/processed/family_splits/F4/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..14ce27f1ca65ca36ae9492ae4a5822ca7524b92e --- /dev/null +++ b/processed/family_splits/F4/train.jsonl @@ -0,0 +1,962 @@ +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} diff --git a/processed/family_splits/F4/val.jsonl b/processed/family_splits/F4/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f2a2ba7e47cd32f59d73fa8a73e122c1f61a6236 --- /dev/null +++ b/processed/family_splits/F4/val.jsonl @@ -0,0 +1,116 @@ +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} diff --git a/processed/family_splits/F5/test.jsonl b/processed/family_splits/F5/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..02d4754af6824230220e386248f714fd8000bcef --- /dev/null +++ b/processed/family_splits/F5/test.jsonl @@ -0,0 +1,230 @@ +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} diff --git a/processed/family_splits/F5/train.jsonl b/processed/family_splits/F5/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b6298c28c3a72931641205165cda9892c401a225 --- /dev/null +++ b/processed/family_splits/F5/train.jsonl @@ -0,0 +1,1874 @@ +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} diff --git a/processed/family_splits/F5/val.jsonl b/processed/family_splits/F5/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9e823af2376ede2e1b07d027aa0b9f5d6e0f55bb --- /dev/null +++ b/processed/family_splits/F5/val.jsonl @@ -0,0 +1,226 @@ +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} diff --git a/processed/family_splits/F6/test.jsonl b/processed/family_splits/F6/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..20f8852a6ed0aeeb93545896c5f01d0505c8ef34 --- /dev/null +++ b/processed/family_splits/F6/test.jsonl @@ -0,0 +1,122 @@ +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} diff --git a/processed/family_splits/F6/train.jsonl b/processed/family_splits/F6/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3eeb365c96a9b660f594d16c2d03f66c6bbac633 --- /dev/null +++ b/processed/family_splits/F6/train.jsonl @@ -0,0 +1,1128 @@ +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} diff --git a/processed/family_splits/F6/val.jsonl b/processed/family_splits/F6/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4c4655f0f735481817b2053d73f501e69a91bf49 --- /dev/null +++ b/processed/family_splits/F6/val.jsonl @@ -0,0 +1,125 @@ +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} diff --git a/processed/plots/f1_top_issues.png b/processed/plots/f1_top_issues.png new file mode 100644 index 0000000000000000000000000000000000000000..734ae13f7210f2b2f151c5d189cd67e0f65daf7e --- /dev/null +++ b/processed/plots/f1_top_issues.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca6ac093b37c956ecc66f4c97b51202f65dd8de2cbedbd5dae79556845097a70 +size 101373 diff --git a/processed/plots/f2_top_issues.png b/processed/plots/f2_top_issues.png new file mode 100644 index 0000000000000000000000000000000000000000..4cb776e5d6438a2c4b908cbc05dd20ab1aa9491c --- /dev/null +++ b/processed/plots/f2_top_issues.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb6dda60c672b788e86e4a8d65c424cf7655ff8ad19e19907f985019e639c2d9 +size 100500 diff --git a/processed/plots/f3_top_issues.png b/processed/plots/f3_top_issues.png new file mode 100644 index 0000000000000000000000000000000000000000..93047c612ba5a16d196d3a6b90c203358a836538 --- /dev/null +++ b/processed/plots/f3_top_issues.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc9968c219e8c4e36b0218979d1d702bd66e0ff7c10e25b7460939388ffca39 +size 93064 diff --git a/processed/plots/f4_top_issues.png b/processed/plots/f4_top_issues.png new file mode 100644 index 0000000000000000000000000000000000000000..7bca986a6aa34b1a8b68414da38a035e0dd493c9 --- /dev/null +++ b/processed/plots/f4_top_issues.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085008c007b1e7ef66b74f2c1d3abc76a2ccafd671ccd70c5c209ea7e1c7f1e0 +size 71214 diff --git a/processed/plots/f5_top_issues.png b/processed/plots/f5_top_issues.png new file mode 100644 index 0000000000000000000000000000000000000000..9a9a6a2b56a8550489eb1cfc93e4d67e224a697e --- /dev/null +++ b/processed/plots/f5_top_issues.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed90854257766cf1f788fe6dde2ba8a08b7d581d14f5528fdc47691340b08857 +size 100671 diff --git a/processed/plots/f6_top_issues.png b/processed/plots/f6_top_issues.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2c06c6a02075a41f3fc6036d1a872a6185bebd --- /dev/null +++ b/processed/plots/f6_top_issues.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436e685f4a6dc53d445ce1d21d8278d506dffe65af90118a52c170400ff644f5 +size 88684 diff --git a/processed/plots/top_issue_counts.png b/processed/plots/top_issue_counts.png new file mode 100644 index 0000000000000000000000000000000000000000..8107ab898eb9840d6773baef5e80abd1502bd59a --- /dev/null +++ b/processed/plots/top_issue_counts.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff925488d01f9ac6d42325f1785db40ac31ea20f0f9e82b9a817496daf6765fa +size 135442 diff --git a/processed/records_full.jsonl b/processed/records_full.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a333cbe6396560ade94694e09bbeafad244c206b --- /dev/null +++ b/processed/records_full.jsonl @@ -0,0 +1,14095 @@ +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/4.png::Animals_and_Creatures/Rabbit/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/4.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/4.png::Animals_and_Creatures/Rabbit/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/4.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false} diff --git a/processed/splits/test.jsonl b/processed/splits/test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2e4b76beb94c11f77c767ce8e74f3b2e1bbfbee6 --- /dev/null +++ b/processed/splits/test.jsonl @@ -0,0 +1,1406 @@ +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "test"} diff --git a/processed/splits/train.jsonl b/processed/splits/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..aa9b8a3c2d9bb59e49964f1b524ad8b09025691d --- /dev/null +++ b/processed/splits/train.jsonl @@ -0,0 +1,11348 @@ +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/1.jpg::Animals_and_Creatures/Penguin/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/26_FISH.png::Animals_and_Creatures/Fish/Tactile/26.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/26_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/26.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/4.png::Animals_and_Creatures/Rabbit/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/4.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/4.png::Animals_and_Creatures/Rabbit/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/4.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/23_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/23.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/2_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg::Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg::Animals_and_Creatures/Fox/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_3.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg::Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_6.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/20_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg::Animals_and_Creatures/Bee/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_11.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/2.png::Animals_and_Creatures/Rabbit/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/2.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg::Animals_and_Creatures/Fox/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_2.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/2.jpg::Animals_and_Creatures/Llama/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg::Animals_and_Creatures/Cat/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_14.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg::Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_11.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg::Animals_and_Creatures/Cat/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_13.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/17_fish.jpg::Animals_and_Creatures/Fish/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/17_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/3_2.png::Animals_and_Creatures/Bat/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/3_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_2.png::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_2.png", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg::Animals_and_Creatures/Cat/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_6.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/4.jpg::Animals_and_Creatures/Llama/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/16_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg::Animals_and_Creatures/Fox/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_4.jpeg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/11_2.png::Animals_and_Creatures/Bat/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/11_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/11.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/5_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg::Animals_and_Creatures/Fox/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_7.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/18_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg::Animals_and_Creatures/Crab/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_5.jpeg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/4.jpg::Animals_and_Creatures/Bat/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3_2.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/3.jpg::Animals_and_Creatures/Penguin/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/5.png::Animals_and_Creatures/Rabbit/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/5.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/4_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/6_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/1.jpg::Animals_and_Creatures/Llama/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg::Animals_and_Creatures/Bird/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/2_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg::Animals_and_Creatures/Duck/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/11_Duck(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/15_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/15_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/11.jpg::Animals_and_Creatures/Penguin/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/9.jpg::Animals_and_Creatures/Penguin/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Penguin/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg::Animals_and_Creatures/Dog/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/10_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg::Animals_and_Creatures/Bee/Tactile/6.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_6.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg::Animals_and_Creatures/Fox/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_12.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg::Animals_and_Creatures/Bee/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_7.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/2.jpg::Animals_and_Creatures/Bat/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/2_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg::Animals_and_Creatures/Fox/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_8.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/7.jpg::Animals_and_Creatures/Penguin/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg::Animals_and_Creatures/Fox/Tactile/11.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_11.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/21_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur_refined.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg::Animals_and_Creatures/Camel/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_6.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg::Animals_and_Creatures/Bee/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_2.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg::Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg::Animals_and_Creatures/Crab/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_6.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_16.jpg::Animals_and_Creatures/Cat/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_16.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/16.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/7_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/7.png::Animals_and_Creatures/Rabbit/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/7.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/14_fish.png::Animals_and_Creatures/Fish/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/14_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg::Animals_and_Creatures/Dog/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/2_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/11_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_2.png::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/11_fish.png::Animals_and_Creatures/Fish/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/11_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg::Animals_and_Creatures/Camel/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_3.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(4).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/16_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg::Animals_and_Creatures/Duck/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/5_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/1_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg::Animals_and_Creatures/Bird/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/4_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird(3)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg::Animals_and_Creatures/Bee/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_13.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg::Animals_and_Creatures/Dog/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/17_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg::Animals_and_Creatures/Cat/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_9.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/12_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/20_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_18.jpg::Animals_and_Creatures/Cat/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_18.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/11_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/18_fish.png::Animals_and_Creatures/Fish/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/18_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/2_fish.png::Animals_and_Creatures/Fish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/2_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/2_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/5.jpg::Animals_and_Creatures/Llama/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg::Animals_and_Creatures/Giraffe/Tactile/3.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/3_Giraffe.jpeg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg::Animals_and_Creatures/Dog/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/5_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/15_fish.jpg::Animals_and_Creatures/Fish/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/15_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg::Animals_and_Creatures/Duck/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/12_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant (2).jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/9.jpg::Animals_and_Creatures/Llama/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/1_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/23_fish.png::Animals_and_Creatures/Fish/Tactile/23.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/23_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/21_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg::Animals_and_Creatures/Duck/Tactile/2_refined.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck_refined.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/19_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/4_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/4.jpg::Animals_and_Creatures/Penguin/Tactile/4.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/4.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/24_fish.png::Animals_and_Creatures/Fish/Tactile/24.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/24_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/24.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/6_2.png::Animals_and_Creatures/Bat/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/6_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg::Animals_and_Creatures/Cat/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_8.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_10.jpg::Animals_and_Creatures/Cat/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_10.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/12.png::Animals_and_Creatures/Bat/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/12.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/6_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/10_fish.jpg::Animals_and_Creatures/Fish/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/10_fish.jpg", "tactile_image": "Animals_and_Creatures/Fish/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/2.jpg::Animals_and_Creatures/Penguin/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg::Animals_and_Creatures/Dog/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/15_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/10.jpg::Animals_and_Creatures/Llama/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Llama/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/6.jpg::Animals_and_Creatures/Llama/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/16_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png::Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/19.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/24.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/24.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/2_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/2_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/3_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/5_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/6_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/9_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png::Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/15.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png::Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/22.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/22.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/5.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/6.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 3, "negatives": 6, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/1.jpg::Furniture_and_Structures/Bed/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg::Furniture_and_Structures/Bed/Tactile/4_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/4_Bed_refined.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/4_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg::Furniture_and_Structures/Chair/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/8_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_8.jpg::Furniture_and_Structures/Door/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_8.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/2_Hut.png::Furniture_and_Structures/Hut/Tactile/2.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/2_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/2.png", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/8.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/8_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/9_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg::Furniture_and_Structures/Bed/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/9_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/9.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg::Furniture_and_Structures/Bed/Tactile/11.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Bed/Natural/11_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg::Furniture_and_Structures/Chair/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/10_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/9_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/12_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png::Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_13.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png::Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_15.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/15.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png::Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_17.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/12.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/12.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png::Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/14.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/18.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/18.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/1.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/8_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/10_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/1_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/5_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png::Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_3.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png::Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_11.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/8.png::Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/8.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/6.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/6.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/8.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/11.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/11.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png::Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/15.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/3.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 6, "negatives": 3, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"rejected": 9}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_8.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg::Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/7_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/8_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/12_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/12.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png::Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png::Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg::Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/9.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/11_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/12_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/15_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/18_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/18.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg::Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_13.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_16.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg::Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_20.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/20.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg::Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_24.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/24.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/3_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/16_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/16.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/17_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/18_Helicopter(2)_Edited.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/21_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/21.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/22_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/24_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/24.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/26_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/26.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/31_Helicopter_Edited_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/31_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/32_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/32.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/1.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/2.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/5.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/6.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png::Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/3.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/5.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg::Vehicles_and_Flight_Systems/Train/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/7.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg::Vehicles_and_Flight_Systems/Train/Tactile/8.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/8.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg::Vehicles_and_Flight_Systems/Train/Tactile/9.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/15.png::Vehicles_and_Flight_Systems/Train/Tactile/15.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/15.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/15.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 3, "negatives": 5, "vote_fraction": 0.375, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg::Wearables_and_Accessories/Hat/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_10.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/10.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/2_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/5_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 9, "positives": 4, "negatives": 5, "vote_fraction": 0.4444444444444444, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/3_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg::Wearables_and_Accessories/Glasses/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_7.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg::Wearables_and_Accessories/Glasses/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_10.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg::Wearables_and_Accessories/Glasses/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_12.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 5, "negatives": 3, "vote_fraction": 0.625, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg::Wearables_and_Accessories/Hat/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_2.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg::Wearables_and_Accessories/Hat/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_4 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/7_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/7.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/9.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/9_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/9.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/10_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/1.png::Wearables_and_Accessories/Ring/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/1.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/4.png::Wearables_and_Accessories/Ring/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/4.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg::Wearables_and_Accessories/Ring/Tactile/7_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/7_refined.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/7_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/8.png::Wearables_and_Accessories/Ring/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/8.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/9.png::Wearables_and_Accessories/Ring/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/9.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/7.jpg::Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/11.jpg::Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/12.jpg::Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/2.jpg::Wearables_and_Accessories/Shirt/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/4.jpg::Wearables_and_Accessories/Shirt/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/8.jpg::Wearables_and_Accessories/Shirt/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/9.jpg::Wearables_and_Accessories/Shirt/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/17.jpg::Wearables_and_Accessories/Shirt/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/19.jpg::Wearables_and_Accessories/Shirt/Tactile/19.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/19.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/19.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/4.jpg::Wearables_and_Accessories/Shoe/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/7.jpg::Wearables_and_Accessories/Shoe/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/17.jpg::Wearables_and_Accessories/Shoe/Tactile/17.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/17.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/17.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/2.jpeg::Wearables_and_Accessories/Watch/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/2.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/4.jpeg::Wearables_and_Accessories/Watch/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Watch/Natural/4.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "train"} diff --git a/processed/splits/val.jsonl b/processed/splits/val.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e0531083ed0420305a7d13ef1e866f5361d4c3d7 --- /dev/null +++ b/processed/splits/val.jsonl @@ -0,0 +1,1341 @@ +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg::Animals_and_Creatures/Duck/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/8_Duck_Edited.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/13_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/13.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg::Animals_and_Creatures/Duck/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/4_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_4.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_4.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg::Animals_and_Creatures/Bird/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bird/Natural/6_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish2.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish2.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/22_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/22.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg::Animals_and_Creatures/Cat/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_2(2).jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/2.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/12_fish.png::Animals_and_Creatures/Fish/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/12_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/10_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/3.jpg::Animals_and_Creatures/Llama/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Llama/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg::Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/11.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/11.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg::Animals_and_Creatures/Crab/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_7.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/7.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg::Animals_and_Creatures/Duck/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Duck/Natural/6_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/19_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/8_2.jpg::Animals_and_Creatures/Bat/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/8.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg::Animals_and_Creatures/Dog/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/20_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg::Animals_and_Creatures/Cat/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_22(2).jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/22.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Elephant/Natural/5_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg::Animals_and_Creatures/Dog/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/11_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/6.jpg::Animals_and_Creatures/Penguin/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Penguin/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/6.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/1.jpg::Animals_and_Creatures/Jellyfish/Tactile/1.png", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/1.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg::Animals_and_Creatures/Cat/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_7.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/11_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg::Animals_and_Creatures/Bee/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_10.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/10.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg::Animals_and_Creatures/Bee/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_5.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_21.jpg::Animals_and_Creatures/Cat/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_21.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/21.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg::Animals_and_Creatures/Dog/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Dog/Natural/7_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/12_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Dog/Natural/12_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/12.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg::Animals_and_Creatures/Crab/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_2.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg::Animals_and_Creatures/Bee/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_3.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/2.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg::Animals_and_Creatures/Crab/Tactile/4.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_4.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/4.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/10_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/3_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg::Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/13.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg::Animals_and_Creatures/Cat/Tactile/4.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_4.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_19.jpg::Animals_and_Creatures/Cat/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_19.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg::Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_3.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Horse/Natural/5_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg::Animals_and_Creatures/Bird/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/18_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/9.png::Animals_and_Creatures/Rabbit/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/9.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/20_fish.png::Animals_and_Creatures/Fish/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Fish/Natural/20_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg::Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_5.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg::Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_8.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg::Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/14.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/14.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg::Animals_and_Creatures/Camel/Tactile/8.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_8.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/8.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/5_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Horse/Natural/1_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_11.jpg::Animals_and_Creatures/Cat/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_11.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/12.jpg::Animals_and_Creatures/Penguin/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Penguin/Natural/12.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/12.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck(2).jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/5.jpg::Animals_and_Creatures/Bat/Tactile/5.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bat/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg::Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/16_Dinosaur.jpg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/16.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg::Animals_and_Creatures/Crab/Tactile/3.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_3.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/3.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_2.png::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/6_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg::Animals_and_Creatures/Dog/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Dog/Natural/1_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/6.jpg::Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_15.jpg::Animals_and_Creatures/Cat/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_15.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg::Animals_and_Creatures/Dog/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Dog/Natural/9_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg::Animals_and_Creatures/Bird/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bird/Natural/5_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Bird/Natural/8_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg::Animals_and_Creatures/Camel/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_10.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg::Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/4.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg::Animals_and_Creatures/Bee/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_1.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg::Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_7.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/13_2.jpg::Animals_and_Creatures/Bat/Tactile/13.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Bat/Natural/13_2.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/13.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/3.png", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Horse/Natural/3_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/29_fish.png::Animals_and_Creatures/Fish/Tactile/29.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Fish/Natural/29_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/29.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/1_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/7.jpg::Animals_and_Creatures/Llama/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Animals_and_Creatures/Llama/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/3_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/9.jpg::Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg::Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_4.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/10.jpg::Animals_and_Creatures/Penguin/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Penguin/Natural/10.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/6.png::Animals_and_Creatures/Rabbit/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/6.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg::Animals_and_Creatures/Crab/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_9.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/9_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/8_fish.png::Animals_and_Creatures/Fish/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Fish/Natural/8_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg::Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/5_4.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg::Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/6.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/6.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg::Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/4_2.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/4.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/15.png::Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/15.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/15.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg::Animals_and_Creatures/Horse/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/4__Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg::Animals_and_Creatures/Camel/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_1.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/1.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Elephant/Natural/15_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/15.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/16.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/16_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/16.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog.png::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog.png", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Horse/Natural/13_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg::Animals_and_Creatures/Bee/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_8.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/7_Duck.png::Animals_and_Creatures/Duck/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Duck/Natural/7_Duck.png", "tactile_image": "Animals_and_Creatures/Duck/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/10_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/10.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_12.jpg::Animals_and_Creatures/Cat/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_12.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg::Animals_and_Creatures/Dog/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Dog/Natural/4_Dog_Edited.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg::Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_10.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/10.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg::Animals_and_Creatures/Duck/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Animals_and_Creatures/Duck/Natural/2_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg::Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/7_Giraffe.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg::Animals_and_Creatures/Bird/Tactile/15.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bird/Natural/15_Bird_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/15.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg::Animals_and_Creatures/Bee/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_9.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg::Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/7.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/7.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Elephant/Natural/9_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg::Animals_and_Creatures/Crab/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_10.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/10.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Animals_and_Creatures/Horse/Natural/12_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/12.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg::Animals_and_Creatures/Camel/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_5.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png::Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/8_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/8.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg::Animals_and_Creatures/Bird/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Bird/Natural/7_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg::Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9_3.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Bat/Natural/9_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_17.jpg::Animals_and_Creatures/Cat/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_17.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/17.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/1.png::Animals_and_Creatures/Rabbit/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/1.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/30_FISH.png::Animals_and_Creatures/Fish/Tactile/30.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Fish/Natural/30_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/30.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg::Animals_and_Creatures/Bee/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_12.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/11_Bird.png::Animals_and_Creatures/Bird/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/11_Bird.png", "tactile_image": "Animals_and_Creatures/Bird/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/3.png::Animals_and_Creatures/Rabbit/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/3.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg::Animals_and_Creatures/Fox/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_13.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/13.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg::Animals_and_Creatures/Bird/Tactile/10.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/10_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/9.jpg::Animals_and_Creatures/Bat/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bat/Natural/9.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/2_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/2.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg::Animals_and_Creatures/Dog/Tactile/6.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Dog/Natural/6_Dog(2).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/6.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg::Animals_and_Creatures/Fox/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_9.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg::Animals_and_Creatures/Giraffe/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/12_Giraffe_Edited.jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/11.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/11_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg::Animals_and_Creatures/Duck/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/9_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png::Animals_and_Creatures/Elephant/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/3_Elephant.png", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/10_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg::Animals_and_Creatures/Dog/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dog/Natural/19_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Horse/Natural/7_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/13_fish.png::Animals_and_Creatures/Fish/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Fish/Natural/13_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg::Animals_and_Creatures/Fox/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_1.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg::Animals_and_Creatures/Fox/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_6.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg::Animals_and_Creatures/Bird/Tactile/12.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/12_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/9_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/9.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/8.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/8_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/8.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/8.png::Animals_and_Creatures/Rabbit/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/8.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/14_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg::Animals_and_Creatures/Bird/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/22_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg::Animals_and_Creatures/Fox/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_5.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg::Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/9_2.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/9.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/19_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/19.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg::Animals_and_Creatures/Bird/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/20_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/1.jpg::Animals_and_Creatures/Bat/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/1.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/1.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/7_3.jpg::Animals_and_Creatures/Bat/Tactile/7.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bat/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Bat/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg::Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Giraffe/Natural/8_Giraffe(2).jpg", "tactile_image": "Animals_and_Creatures/Giraffe/Tactile/8.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg::Animals_and_Creatures/Duck/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/10_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png::Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/12_2.png", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/7_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/22_FISH.png::Animals_and_Creatures/Fish/Tactile/22.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Fish/Natural/22_FISH.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/22.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Rabbit/Natural/10.png::Animals_and_Creatures/Rabbit/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Rabbit/Natural/10.png", "tactile_image": "Animals_and_Creatures/Rabbit/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg::Animals_and_Creatures/Fox/Tactile/10.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Fox/Natural/Fox_10.jpg", "tactile_image": "Animals_and_Creatures/Fox/Tactile/10.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/17_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/17.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg::Animals_and_Creatures/Bird/Tactile/19.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/19_Bird(3).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg::Animals_and_Creatures/Bee/Tactile/4.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bee/Natural/Bee_4.jpg", "tactile_image": "Animals_and_Creatures/Bee/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Llama/Natural/8_2.jpg::Animals_and_Creatures/Llama/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Llama/Natural/8_2.jpg", "tactile_image": "Animals_and_Creatures/Llama/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/8_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg::Animals_and_Creatures/Beluga Whale/Tactile/1.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_1.jpeg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/1.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg::Animals_and_Creatures/Dog/Tactile/8.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/8_Dog(3).jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg::Animals_and_Creatures/Duck/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Duck/Natural/3_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg::Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_9.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Horse/Natural/9_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg::Animals_and_Creatures/Crab/Tactile/1.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Crab/Natural/Crab_1.jpg", "tactile_image": "Animals_and_Creatures/Crab/Tactile/1.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_1.jpg::Animals_and_Creatures/Cat/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_1.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_20.jpg::Animals_and_Creatures/Cat/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_20.jpg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/20.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg::Animals_and_Creatures/Dog/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/13_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/13.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/8.jpg::Animals_and_Creatures/Penguin/Tactile/8.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Penguin/Natural/8.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/8.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg::Animals_and_Creatures/Cat/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Cat/Natural/cat_3.jpeg", "tactile_image": "Animals_and_Creatures/Cat/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Penguin/Natural/5.jpg::Animals_and_Creatures/Penguin/Tactile/5.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Penguin/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Penguin/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Bird/Natural/3_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg::Animals_and_Creatures/Teddy Bear/Tactile/16.png", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/16.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/16.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/6_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg::Animals_and_Creatures/Bird/Tactile/21.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/21_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/21.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bat/Natural/10_2.png::Animals_and_Creatures/Bat/Tactile/10.jpeg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bat/Natural/10_2.png", "tactile_image": "Animals_and_Creatures/Bat/Tactile/10.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Elephant/Natural/13_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg::Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Teddy Bear/Natural/5.jpg", "tactile_image": "Animals_and_Creatures/Teddy Bear/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg::Animals_and_Creatures/Dog/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Dog/Natural/18_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/18.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/17_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Horse/Natural/18_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg::Animals_and_Creatures/Dog/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/14_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg::Animals_and_Creatures/Elephant/Tactile/17.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Elephant/Natural/17_Elephant.jpeg", "tactile_image": "Animals_and_Creatures/Elephant/Tactile/17.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg::Animals_and_Creatures/Horse/Tactile/20.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Horse/Natural/20_Horse.jpeg", "tactile_image": "Animals_and_Creatures/Horse/Tactile/20.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg::Animals_and_Creatures/Dog/Tactile/3.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dog/Natural/3_Dog.jpg", "tactile_image": "Animals_and_Creatures/Dog/Tactile/3.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg::Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Beluga Whale/Natural/Beluga_2.jpg", "tactile_image": "Animals_and_Creatures/Beluga Whale/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg::Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Dinosaur/Natural/18_Dinosaur.jpeg", "tactile_image": "Animals_and_Creatures/Dinosaur/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg::Animals_and_Creatures/Camel/Tactile/2.png", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Camel/Natural/Camel_2.jpg", "tactile_image": "Animals_and_Creatures/Camel/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg::Animals_and_Creatures/Bird/Tactile/9.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Bird/Natural/9_Bird(2).jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg::Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Animals_and_Creatures/Jellyfish/Natural/7_3.jpg", "tactile_image": "Animals_and_Creatures/Jellyfish/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg::Animals_and_Creatures/Duck/Tactile/1.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "angle_match", "option_description": "Viewing angle matches the natural image.", "natural_image": "Animals_and_Creatures/Duck/Natural/1_Duck.jpg", "tactile_image": "Animals_and_Creatures/Duck/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Fish/Natural/6_fish.png::Animals_and_Creatures/Fish/Tactile/6.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Fish/Natural/6_fish.png", "tactile_image": "Animals_and_Creatures/Fish/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg::Animals_and_Creatures/Bird/Tactile/13.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Animals_and_Creatures/Bird/Natural/13_Bird.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg::Animals_and_Creatures/Bird/Tactile/14.jpg", "task_family": "F1", "task_id": "F1QV", "option_id": "view_frontal", "option_description": "Frontal view.", "natural_image": "Animals_and_Creatures/Bird/Natural/14_Bird(2)_Edited.jpg", "tactile_image": "Animals_and_Creatures/Bird/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_13.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QB", "option_id": "species_match", "option_description": "Object/species identity matches.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png::Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png::Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png::Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/17.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/22.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/22.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/8.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/5_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_1_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/7_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png::Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/8.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png::Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png::Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/13.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 4, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 2, "negatives": 7, "vote_fraction": 0.2222222222222222, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/1_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/1.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/1_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/1.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_11.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/2.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/9.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/12.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 3, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/8.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/3.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/3.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/7.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 9, "positives": 5, "negatives": 4, "vote_fraction": 0.5555555555555556, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png::Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/14_refined.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/14_refined.png", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 2, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/10.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/4.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/2.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png::Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png::Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/5.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png::Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png::Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/14.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png::Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/15.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/23.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/23.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/25.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/25.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/1.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/3_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg::Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/4_book.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/7_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/12_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/12.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 7, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/8_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/2.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_6.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_7.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_15.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/15.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/14.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/15.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/15.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_3_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/3_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/6.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg::Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_9.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/9.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/7.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/10.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg::Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/1.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/4.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/6_refined.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/6_refined.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/12.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/8.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/11.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/8.jpg", "votes_total": 9, "positives": 7, "negatives": 2, "vote_fraction": 0.7777777777777778, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/9.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png::Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png::Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/13.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/13.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png::Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png::Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/17.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png::Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/18.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/4.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/8.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg::Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Apple/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Apple/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png::Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/8.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png::Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png::Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg::Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/12.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/12.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png::Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/16.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/16.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png::Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/18.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/18.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png::Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/20.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg::Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Ball/Natural/21.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Ball/Tactile/21.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/2.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg::Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/4.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/10.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg::Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Banana/Natural/13.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Banana/Tactile/13.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/6_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/8_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/8.png", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/9_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/10_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/10.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png::Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Book/Natural/11_book.png", "tactile_image": "Food_Nature_and_Simple_Objects/Book/Tactile/11.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/4_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/7_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/7.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg::Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Bottle/Natural/10_Bottle.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Bottle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/3.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/7.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/8.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg::Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Clover/Natural/Clover_9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Clover/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_1.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/1.png", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_2.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/2.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg::Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/3.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_5.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/5.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_8.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/8.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_10.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg::Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Cup/Natural/cup_14.jpeg", "tactile_image": "Food_Nature_and_Simple_Objects/Cup/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/4.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/4.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/8.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg::Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Egg/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Egg/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/2.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/5.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/7.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg::Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Flower/Natural/Flower_12.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Flower/Tactile/12.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/1.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/3.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/6.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg::Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Leaf/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Leaf/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/9.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/10.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/10.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg::Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Planet/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Planet/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/6.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png::Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Snowflake/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Snowflake/Tactile/9.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/7.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/9.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/11.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/11.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png::Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Soda Cans/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Soda Cans/Tactile/12.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/1.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/2.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/3.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/5.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg::Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tomato/Natural/8.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Tomato/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png::Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/1.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/1.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png::Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/2.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/2.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png::Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/3.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png::Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/4.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png::Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/5.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png::Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/7.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png::Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/10.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/10.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png::Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/11.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/11.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png::Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/12.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/12.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png::Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/19.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png::Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/20.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/20.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_match", "option_description": "Overall viewpoint alignment.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png::Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Food_Nature_and_Simple_Objects/Tree/Natural/21.png", "tactile_image": "Food_Nature_and_Simple_Objects/Tree/Tactile/21.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/2.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_undefined", "option_description": "View is ambiguous/undefined.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/7.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg::Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "task_family": "F2", "task_id": "F2QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Food_Nature_and_Simple_Objects/Umbrella/Natural/9.jpg", "tactile_image": "Food_Nature_and_Simple_Objects/Umbrella/Tactile/9.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg::Furniture_and_Structures/Bed/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/5_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/5.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg::Furniture_and_Structures/Bed/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Bed/Natural/10_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/10.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Chair/Natural/3_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_9.jpg::Furniture_and_Structures/Door/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_9.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/9.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_11.jpg::Furniture_and_Structures/Door/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_11.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/11.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/3.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/3_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg::Furniture_and_Structures/Lamp/Tactile/7_refined.png", "task_family": "F3", "task_id": "F3QB", "option_id": "posture_match", "option_description": "Pose/orientation matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/7_refined.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/7_refined.png", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/10.png::Furniture_and_Structures/Lamp/Tactile/10.jpeg", "task_family": "F3", "task_id": "F3QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Furniture_and_Structures/Lamp/Natural/10.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/10.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg::Furniture_and_Structures/Chair/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Chair/Natural/2_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_4.jpg::Furniture_and_Structures/Door/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_4.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_5.jpg::Furniture_and_Structures/Door/Tactile/5.png", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_5.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/5.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_13.jpeg::Furniture_and_Structures/Door/Tactile/13.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_13.jpeg", "tactile_image": "Furniture_and_Structures/Door/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/4.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Hut/Natural/4_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/6.png::Furniture_and_Structures/Lamp/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Furniture_and_Structures/Lamp/Natural/6.png", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/6.jpeg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 6, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/2.jpg::Furniture_and_Structures/Lamp/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Furniture_and_Structures/Lamp/Natural/2.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/2.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg::Furniture_and_Structures/Bed/Tactile/2.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Bed/Natural/2_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/2.jpeg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg::Furniture_and_Structures/Bed/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/3_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg::Furniture_and_Structures/Bed/Tactile/6.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/6_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/6.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg::Furniture_and_Structures/Bed/Tactile/7.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/7_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/7.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg::Furniture_and_Structures/Bed/Tactile/12.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Bed/Natural/12_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/12.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg::Furniture_and_Structures/Bed/Tactile/13.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Bed/Natural/13_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/13.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg::Furniture_and_Structures/Bed/Tactile/14.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Bed/Natural/14_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/14.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg::Furniture_and_Structures/Chair/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Chair/Natural/1_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg::Furniture_and_Structures/Chair/Tactile/4.png", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/4_Chair(2)_Edited.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg::Furniture_and_Structures/Chair/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/5_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg::Furniture_and_Structures/Chair/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Chair/Natural/6_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/6.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg::Furniture_and_Structures/Chair/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Chair/Natural/7_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/12.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Chair/Natural/12_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/12.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_2.jpg::Furniture_and_Structures/Door/Tactile/2.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_2.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_3.jpg::Furniture_and_Structures/Door/Tactile/3.png", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_3.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/3.png", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_7.jpg::Furniture_and_Structures/Door/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_7.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_10.jpg::Furniture_and_Structures/Door/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_10.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_12.jpg::Furniture_and_Structures/Door/Tactile/12.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_12.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/12.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Furniture_and_Structures/Hut/Natural/6_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/7_Hut.png::Furniture_and_Structures/Hut/Tactile/7.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Hut/Natural/7_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg::Furniture_and_Structures/Hut/Tactile/10.jpg", "task_family": "F3", "task_id": "F3QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Furniture_and_Structures/Hut/Natural/10_Hut.jpeg", "tactile_image": "Furniture_and_Structures/Hut/Tactile/10.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/3.jpg::Furniture_and_Structures/Lamp/Tactile/3.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Furniture_and_Structures/Lamp/Natural/3.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/3.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/5.jpg::Furniture_and_Structures/Lamp/Tactile/5.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Furniture_and_Structures/Lamp/Natural/5.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/5.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/8.jpg::Furniture_and_Structures/Lamp/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Furniture_and_Structures/Lamp/Natural/8.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/8.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/9.jpg::Furniture_and_Structures/Lamp/Tactile/9.jpeg", "task_family": "F3", "task_id": "F3QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Furniture_and_Structures/Lamp/Natural/9.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg::Furniture_and_Structures/Bed/Tactile/8.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Bed/Natural/8_Bed.jpg", "tactile_image": "Furniture_and_Structures/Bed/Tactile/8.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg::Furniture_and_Structures/Chair/Tactile/9.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Chair/Natural/9_Chair.jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/9.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg::Furniture_and_Structures/Chair/Tactile/11.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Chair/Natural/11_Chair(2).jpg", "tactile_image": "Furniture_and_Structures/Chair/Tactile/11.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_1.jpg::Furniture_and_Structures/Door/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_1.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/1.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Door/Natural/Door_6.jpg::Furniture_and_Structures/Door/Tactile/6.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Door/Natural/Door_6.jpg", "tactile_image": "Furniture_and_Structures/Door/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/1_Hut.png::Furniture_and_Structures/Hut/Tactile/1.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Furniture_and_Structures/Hut/Natural/1_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/1.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Hut/Natural/5_Hut.png::Furniture_and_Structures/Hut/Tactile/5.jpg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Hut/Natural/5_Hut.png", "tactile_image": "Furniture_and_Structures/Hut/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/1.jpg::Furniture_and_Structures/Lamp/Tactile/1.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Furniture_and_Structures/Lamp/Natural/1.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/1.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Furniture_and_Structures/Lamp/Natural/4.jpg::Furniture_and_Structures/Lamp/Tactile/4.jpeg", "task_family": "F3", "task_id": "F3QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Furniture_and_Structures/Lamp/Natural/4.jpg", "tactile_image": "Furniture_and_Structures/Lamp/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/6_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/6.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"submitted": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "task_family": "F4", "task_id": "F4QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/6.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/6.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"submitted": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/3_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/3.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 1, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/7_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/7.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 4, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/6_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/10_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/13_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/15_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/16_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png::Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_4.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png::Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_12.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/12.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png::Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_18.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/18.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 4, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 8, "positives": 2, "negatives": 6, "vote_fraction": 0.25, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 8, "positives": 1, "negatives": 7, "vote_fraction": 0.125, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/1.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/1.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/4.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/8.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 2, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png::Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/17.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/17.jpg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 1, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/2_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/9_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/9.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/11_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/12_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/11_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/14_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png::Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_2.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/2.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png::Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_8.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png::Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_16.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/16.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg::Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_19.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/19.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/1.png::Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/1.png", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/1.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/9.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/9.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/1.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "task_family": "F4", "task_id": "F4QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/2.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/2.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/7.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/7.jpeg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png::Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/11.png", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/11.jpg", "votes_total": 4, "positives": 4, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/16.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "task_family": "F4", "task_id": "F4QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/8.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/8.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg::Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/1_Camera.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/4_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/4.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 7, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg::Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Camera/Natural/5_Camera.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Camera/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png::Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/2_guitar_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/2_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/3_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/3.jpg", "votes_total": 9, "positives": 8, "negatives": 1, "vote_fraction": 0.8888888888888888, "label": 1, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/4_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/4.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/7_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/7.jpg", "votes_total": 9, "positives": 1, "negatives": 8, "vote_fraction": 0.1111111111111111, "label": 0, "source_assignments": 9, "status_counts": {"approved": 8, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/8_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/8.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 8}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp::Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/17_guitar.webp", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/17.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg::Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Guitar/Natural/18_guitar.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Guitar/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png::Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_7.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/7.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png::Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Hammer/Natural/hammer_14.png", "tactile_image": "Tools_Instruments_and_Appliances/Hammer/Tactile/14.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/2.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/3.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/3.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/4.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/4.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/5.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/5.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg::Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Iron/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Iron/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/3.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/3.jpeg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/5.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/5.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/7.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/7.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/9.jpeg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg::Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Laptop/Natural/10.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Laptop/Tactile/10.jpeg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg::Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/9.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg::Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Pencil/Natural/13.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Pencil/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/2.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/2.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg::Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/4.jpeg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/4.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png::Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/6_refined.png", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/6_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg::Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "task_family": "F4", "task_id": "F4QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Tools_Instruments_and_Appliances/Spoon/Natural/10.jpg", "tactile_image": "Tools_Instruments_and_Appliances/Spoon/Tactile/10.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"submitted": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/14_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/14.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/16_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/16.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg::Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/2.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 5, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_6.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/6.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_7.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_10.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg::Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_15.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/15.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_22.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/22.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/10_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/19_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/19.jpeg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/20_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/20.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/29_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/29.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/30_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/30.jpeg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/9.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/9.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/4.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/8.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/3.png::Vehicles_and_Flight_Systems/Train/Tactile/3.png", "task_family": "F5", "task_id": "F5QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/3.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 6, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/11.png::Vehicles_and_Flight_Systems/Train/Tactile/11.png", "task_family": "F5", "task_id": "F5QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/11.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 8, "positives": 7, "negatives": 1, "vote_fraction": 0.875, "label": 1, "source_assignments": 8, "status_counts": {"approved": 2, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/18.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/18.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/21.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/23.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png::Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/1.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png::Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/3.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png::Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/6.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_3.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_6.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/6.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_8.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/8.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/9_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/19_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/19.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_17.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/17.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/27_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/27.jpeg", "votes_total": 4, "positives": 1, "negatives": 3, "vote_fraction": 0.25, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/14.jpg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/3.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/14.png::Vehicles_and_Flight_Systems/Train/Tactile/14.png", "task_family": "F5", "task_id": "F5QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/14.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/14.png", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/16.png::Vehicles_and_Flight_Systems/Train/Tactile/16.png", "task_family": "F5", "task_id": "F5QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/16.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/16.png", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 5, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/4_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/7_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/7.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/9_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/9.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/11_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/11.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/14_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/15_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/15.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/11.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg::Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/15.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/15.jpeg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 2, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 3, "submitted": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/14_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/14_refined.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/1.png::Vehicles_and_Flight_Systems/Train/Tactile/1.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/1.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/1.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "submitted": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg::Vehicles_and_Flight_Systems/Train/Tactile/5.png", "task_family": "F5", "task_id": "F5QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/5.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_11.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/11.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/1_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/1.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/2_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/2.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/5_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/6_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/8_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/10_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_3.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/3.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_4.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg::Vehicles_and_Flight_Systems/Car/Tactile/5.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_5.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/5.png", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg::Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_11.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/6_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/6.jpeg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/13_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/13.jpeg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/4.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/6.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/9.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png::Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/11.png", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 4, "negatives": 2, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png::Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/2.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png::Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png::Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/7.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/7.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png::Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Airplane/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Airplane/Tactile/10.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_1.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/1_refined.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_4.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/4.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_5.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png::Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_7.png", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/7.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg::Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Bicycle/Natural/bicycle_9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Bicycle/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/13_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/13.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png::Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Boat/Natural/17_boat.png", "tactile_image": "Vehicles_and_Flight_Systems/Boat/Tactile/17.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg::Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_1.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg::Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/14.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg::Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/19.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg::Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_21.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/21.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_23.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/23.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg::Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_25.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/25.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg::Vehicles_and_Flight_Systems/Car/Tactile/26.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Car/Natural/Car_26.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Car/Tactile/26.png", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/1_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/1.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/2_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/4_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/4.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/5_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/5.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/23_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/23.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png::Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/25_Helicopter.png", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/25.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/28_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/28.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/33_Helicopter(2).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/33.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/34_Helicopter.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/34.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg::Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Helicopter/Natural/35_Helicopter(4).jpg", "tactile_image": "Vehicles_and_Flight_Systems/Helicopter/Tactile/35.jpeg", "votes_total": 7, "positives": 6, "negatives": 1, "vote_fraction": 0.8571428571428571, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png::Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/8.png", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/8.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg::Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Motorcycle/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Motorcycle/Tactile/12.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/2.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/6.png", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/9.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/10.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/12.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/12.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/14.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/14.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/16.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/16.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/17.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/17.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/19.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/19.jpeg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/20.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/20.jpeg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg::Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Rocket/Natural/22.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Rocket/Tactile/22.jpeg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/2.jpeg", "votes_total": 7, "positives": 4, "negatives": 3, "vote_fraction": 0.5714285714285714, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg::Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/5.jpeg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/5.jpeg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/6.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/7.jpeg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/9.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/9.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg::Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Satellite/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Satellite/Tactile/10.jpeg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg::Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Scooty/Natural/1_refined.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Scooty/Tactile/1_refined.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/4.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/4.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/6.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/7.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/8.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/8.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/10.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/10.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg::Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Ship/Natural/13.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Ship/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg::Vehicles_and_Flight_Systems/Train/Tactile/2.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/2.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/2.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/4.png::Vehicles_and_Flight_Systems/Train/Tactile/4.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/4.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/4.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg::Vehicles_and_Flight_Systems/Train/Tactile/6.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/6.jpg", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/6.png", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/10.png::Vehicles_and_Flight_Systems/Train/Tactile/10.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/10.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/10.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/12.png::Vehicles_and_Flight_Systems/Train/Tactile/12.png", "task_family": "F5", "task_id": "F5QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/12.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/12.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/13.png::Vehicles_and_Flight_Systems/Train/Tactile/13.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/13.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/13.png", "votes_total": 5, "positives": 4, "negatives": 1, "vote_fraction": 0.8, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/17.png::Vehicles_and_Flight_Systems/Train/Tactile/17.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/17.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/17.png", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png::Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "task_family": "F5", "task_id": "F5QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Vehicles_and_Flight_Systems/Train/Natural/18_refined.png", "tactile_image": "Vehicles_and_Flight_Systems/Train/Tactile/18_refined.png", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg::Wearables_and_Accessories/Glasses/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_2.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/2.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg::Wearables_and_Accessories/Glasses/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_4.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/4.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 3, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 5, "positives": 2, "negatives": 3, "vote_fraction": 0.4, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg::Wearables_and_Accessories/Hat/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_9.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/1_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/1.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/11_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/11.jpg", "votes_total": 5, "positives": 3, "negatives": 2, "vote_fraction": 0.6, "label": 1, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 5, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 5, "positives": 1, "negatives": 4, "vote_fraction": 0.2, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 4, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/6.jpg::Wearables_and_Accessories/Shoe/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "configuration_match", "option_description": "Configuration/layout matches the photo.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/6.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/9.jpg::Wearables_and_Accessories/Shoe/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/9.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/1.jpg::Wearables_and_Accessories/Watch/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg::Wearables_and_Accessories/Watch/Tactile/3_refined.png", "task_family": "F6", "task_id": "F6QB", "option_id": "background_clean", "option_description": "Background is clean/solid without clutter.", "natural_image": "Wearables_and_Accessories/Watch/Natural/3_refined.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/3_refined.png", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QB", "option_id": "object_match", "option_description": "Object identity matches the reference.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg::Wearables_and_Accessories/Glasses/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_5.jpeg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg::Wearables_and_Accessories/Hat/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_6.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/6.jpg", "votes_total": 9, "positives": 0, "negatives": 9, "vote_fraction": 0.0, "label": 0, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/6_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/8_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/8.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 3, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/6.png::Wearables_and_Accessories/Ring/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Ring/Natural/6.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/6.jpg", "votes_total": 9, "positives": 9, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 9, "status_counts": {"approved": 1, "rejected": 8}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/1.jpg::Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/2.jpg::Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/2.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "too_thick", "option_description": "Lines are too thick/bold.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 8, "positives": 0, "negatives": 8, "vote_fraction": 0.0, "label": 0, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/10.jpg::Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/10.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 5, "rejected": 1}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/3.jpg::Wearables_and_Accessories/Shirt/Tactile/3.png", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/3.png", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 5}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "broken_lines", "option_description": "Lines have gaps or discontinuities.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 7, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/13.jpg::Wearables_and_Accessories/Shirt/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/13.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/15.jpg::Wearables_and_Accessories/Shirt/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/16.jpg::Wearables_and_Accessories/Shirt/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/16.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/13.jpg::Wearables_and_Accessories/Shoe/Tactile/13.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/13.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/13.jpg", "votes_total": 8, "positives": 8, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 8, "status_counts": {"approved": 1, "rejected": 7}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/18.jpg::Wearables_and_Accessories/Shoe/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/6.jpeg::Wearables_and_Accessories/Watch/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/6.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "fuzzy_lines", "option_description": "Lines look fuzzy or blurry.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QL", "option_id": "no_line_issues", "option_description": "Lines are clean / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg::Wearables_and_Accessories/Hat/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_1.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/1.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg::Wearables_and_Accessories/Hat/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_5 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/5.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg::Wearables_and_Accessories/Hat/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_12.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/12.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 1, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg::Wearables_and_Accessories/Headphones/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Headphones/Natural/4_Headphone.jpg", "tactile_image": "Wearables_and_Accessories/Headphones/Tactile/4.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 0, "negatives": 5, "vote_fraction": 0.0, "label": 0, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/3.png::Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/3.png", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/3.jpg", "votes_total": 5, "positives": 5, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 5, "status_counts": {"approved": 2, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/5.jpg::Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/5.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/1.jpg::Wearables_and_Accessories/Shirt/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/1.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 2, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/5.jpg::Wearables_and_Accessories/Shirt/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/5.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 1, "rejected": 6}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/11.jpg::Wearables_and_Accessories/Shirt/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/11.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "extra_parts", "option_description": "Extra or hallucinated parts exist.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 6, "positives": 6, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 1, "negatives": 5, "vote_fraction": 0.16666666666666666, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/11.jpg::Wearables_and_Accessories/Shoe/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/11.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/11.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 1, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "missing_parts", "option_description": "Some parts from the photo are missing.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/9.jpeg::Wearables_and_Accessories/Watch/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "all_correct", "option_description": "All parts present and correctly located.", "natural_image": "Wearables_and_Accessories/Watch/Natural/9.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/9.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/10.jpeg::Wearables_and_Accessories/Watch/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QP", "option_id": "wrong_location", "option_description": "Parts exist but are misplaced.", "natural_image": "Wearables_and_Accessories/Watch/Natural/10.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/5.jpg::Wearables_and_Accessories/Shoe/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/5.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/10.jpg::Wearables_and_Accessories/Shoe/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "missing_texture", "option_description": "Texture missing where expected.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/12.jpg::Wearables_and_Accessories/Shoe/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_similar_adjacent", "option_description": "Textures too similar to adjacent regions.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/12.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/5.jpeg::Wearables_and_Accessories/Watch/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/5.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/5.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/7.jpeg::Wearables_and_Accessories/Watch/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "bleeds_boundaries", "option_description": "Textures bleed across boundaries.", "natural_image": "Wearables_and_Accessories/Watch/Natural/7.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/7.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "inconsistent_within_elements", "option_description": "Texture inconsistent within an element.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "too_dense_cluttered", "option_description": "Textures overly dense or cluttered.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/8.jpeg::Wearables_and_Accessories/Watch/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "no_issues_good", "option_description": "Textures look good / no issues.", "natural_image": "Wearables_and_Accessories/Watch/Natural/8.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Watch/Natural/11.jpeg::Wearables_and_Accessories/Watch/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QT", "option_id": "far_near_wrong", "option_description": "Near vs. far textures not differentiated.", "natural_image": "Wearables_and_Accessories/Watch/Natural/11.jpeg", "tactile_image": "Wearables_and_Accessories/Watch/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg::Wearables_and_Accessories/Glasses/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_1.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/1.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 2, "negatives": 1, "vote_fraction": 0.6666666666666666, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg::Wearables_and_Accessories/Glasses/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_3.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/3.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 3, "negatives": 0, "vote_fraction": 1.0, "label": 1, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg::Wearables_and_Accessories/Glasses/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_6.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/6.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg::Wearables_and_Accessories/Glasses/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_8.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/8.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg::Wearables_and_Accessories/Glasses/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_9.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/9.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg::Wearables_and_Accessories/Glasses/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Glasses/Natural/glasses_11.jpg", "tactile_image": "Wearables_and_Accessories/Glasses/Tactile/11.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg::Wearables_and_Accessories/Hat/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_3.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/3.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 3, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg::Wearables_and_Accessories/Hat/Tactile/7.png", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_7.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/7.png", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg::Wearables_and_Accessories/Hat/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_8.jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/8.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 3, "rejected": 4}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg::Wearables_and_Accessories/Hat/Tactile/11.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Hat/Natural/Hat_11 (1).jpg", "tactile_image": "Wearables_and_Accessories/Hat/Tactile/11.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 2, "rejected": 5}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/2.png::Wearables_and_Accessories/Ring/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/2.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/2.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/3.png::Wearables_and_Accessories/Ring/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/3.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/3.jpg", "votes_total": 7, "positives": 3, "negatives": 4, "vote_fraction": 0.42857142857142855, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/5.jpg::Wearables_and_Accessories/Ring/Tactile/5.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Ring/Natural/5.jpg", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/5.jpg", "votes_total": 7, "positives": 5, "negatives": 2, "vote_fraction": 0.7142857142857143, "label": 1, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Ring/Natural/10.png::Wearables_and_Accessories/Ring/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Ring/Natural/10.png", "tactile_image": "Wearables_and_Accessories/Ring/Tactile/10.jpg", "votes_total": 3, "positives": 1, "negatives": 2, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/4.jpg::Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/4.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/4.jpg", "votes_total": 3, "positives": 0, "negatives": 3, "vote_fraction": 0.0, "label": 0, "source_assignments": 3, "status_counts": {"approved": 3}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/6.jpg::Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/6.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/8.jpg::Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/8.jpg", "votes_total": 4, "positives": 3, "negatives": 1, "vote_fraction": 0.75, "label": 1, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/School Backpack/Natural/9.jpg::Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/School Backpack/Natural/9.jpg", "tactile_image": "Wearables_and_Accessories/School Backpack/Tactile/9.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/6.jpg::Wearables_and_Accessories/Shirt/Tactile/6.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/6.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/6.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/7.jpg::Wearables_and_Accessories/Shirt/Tactile/7.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/7.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/7.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "orientation_match", "option_description": "Orientation/view matches the photo.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 2, "negatives": 5, "vote_fraction": 0.2857142857142857, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/10.jpg::Wearables_and_Accessories/Shirt/Tactile/10.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/10.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/10.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 4, "rejected": 3}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/12.jpg::Wearables_and_Accessories/Shirt/Tactile/12.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/12.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/12.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 4, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/14.jpg::Wearables_and_Accessories/Shirt/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/14.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/18.jpg::Wearables_and_Accessories/Shirt/Tactile/18.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/18.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/18.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/20.jpg::Wearables_and_Accessories/Shirt/Tactile/20.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_frontal", "option_description": "Front view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/20.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/20.jpg", "votes_total": 8, "positives": 6, "negatives": 2, "vote_fraction": 0.75, "label": 1, "source_assignments": 8, "status_counts": {"approved": 6, "rejected": 2}, "used_consensus": true, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shirt/Natural/21.jpg::Wearables_and_Accessories/Shirt/Tactile/21.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shirt/Natural/21.jpg", "tactile_image": "Wearables_and_Accessories/Shirt/Tactile/21.jpg", "votes_total": 6, "positives": 0, "negatives": 6, "vote_fraction": 0.0, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/1.jpg::Wearables_and_Accessories/Shoe/Tactile/1.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/1.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/1.jpg", "votes_total": 6, "positives": 5, "negatives": 1, "vote_fraction": 0.8333333333333334, "label": 1, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/2.jpg::Wearables_and_Accessories/Shoe/Tactile/2.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_side", "option_description": "Side view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/2.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/2.jpg", "votes_total": 6, "positives": 2, "negatives": 4, "vote_fraction": 0.3333333333333333, "label": 0, "source_assignments": 6, "status_counts": {"approved": 6}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/3.jpg::Wearables_and_Accessories/Shoe/Tactile/3.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/3.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/3.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/8.jpg::Wearables_and_Accessories/Shoe/Tactile/8.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/8.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/8.jpg", "votes_total": 4, "positives": 0, "negatives": 4, "vote_fraction": 0.0, "label": 0, "source_assignments": 4, "status_counts": {"approved": 4}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/14.jpg::Wearables_and_Accessories/Shoe/Tactile/14.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/14.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/14.jpg", "votes_total": 7, "positives": 0, "negatives": 7, "vote_fraction": 0.0, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/15.jpg::Wearables_and_Accessories/Shoe/Tactile/15.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_perspective", "option_description": "Perspective / three-quarter view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/15.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/15.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} +{"pair_id": "Wearables_and_Accessories/Shoe/Natural/16.jpg::Wearables_and_Accessories/Shoe/Tactile/16.jpg", "task_family": "F6", "task_id": "F6QV", "option_id": "view_top", "option_description": "Top view.", "natural_image": "Wearables_and_Accessories/Shoe/Natural/16.jpg", "tactile_image": "Wearables_and_Accessories/Shoe/Tactile/16.jpg", "votes_total": 7, "positives": 1, "negatives": 6, "vote_fraction": 0.14285714285714285, "label": 0, "source_assignments": 7, "status_counts": {"approved": 7}, "used_consensus": false, "split": "val"} diff --git a/processed/worker_vote_accuracy.csv b/processed/worker_vote_accuracy.csv new file mode 100644 index 0000000000000000000000000000000000000000..01853f58db15d3fce3494c264c133762908d87f4 --- /dev/null +++ b/processed/worker_vote_accuracy.csv @@ -0,0 +1,332 @@ +worker_id,votes,correct,accuracy +A22YCS3UW15WOO,3591,3192,0.8889 +A2FK6782M09EBO,3009,2675,0.8890 +AJZHPDCKUVRM8,2713,2254,0.8308 +A1SMWIBTQ2AESU,2637,2272,0.8616 +A1GFLIIHEL2KVW,2489,2031,0.8160 +A2NZLZLLAZYXJX,2422,2108,0.8704 +A2MFNJV6MARUI,1810,1477,0.8160 +AZG7LNQUXYW8V,1773,1519,0.8567 +A1UR7H7FKO0ZUL,1721,1425,0.8280 +ASD3A849JVVRZ,1589,1535,0.9660 +A2D07SVRO4UFVL,1550,1311,0.8458 +A2J1106X8NPZGP,1538,1150,0.7477 +A30GP1W7S6H4VX,1497,1322,0.8831 +A3CPZZ5SJWZ182,1439,937,0.6511 +A1ASIOBX12Z73I,1406,1187,0.8442 +AANFSTZSFMWNW,1396,1068,0.7650 +A1MYCZT6OX9G20,1387,1249,0.9005 +A32BQKMVUH8ZYJ,1251,868,0.6938 +A1H1NFS80HT7LX,1236,1099,0.8892 +A216EN2HTJUQJR,1226,910,0.7423 +ALJH5865ISWT1,1218,1140,0.9360 +A3MFBBVX106DGI,1137,1057,0.9296 +A312G4F6TIKFFQ,1127,1005,0.8917 +AM8EV600ZP69X,1119,924,0.8257 +ANPPS2BP5MHDE,1105,983,0.8896 +A29QXD23ZZTAZJ,1058,950,0.8979 +A2M3DR0V45HNUL,1050,800,0.7619 +A2QX81MMC8KN80,1027,817,0.7955 +AAY4GPG1M4MQX,1027,883,0.8598 +A11HKV0CDTZUQF,968,406,0.4194 +A1CMJNN1QQKLU8,960,878,0.9146 +A80XRGJXN2D22,957,850,0.8882 +A18P8FU1N4QUWA,948,426,0.4494 +A21SP66LYUNOR7,925,867,0.9373 +A9O6HJE36LUC7,907,791,0.8721 +A3UPEZR0XSE052,905,845,0.9337 +A3834LTJK8I0Y2,904,716,0.7920 +A3VCTHO95DZWAQ,903,833,0.9225 +A1XT2MMWYNR9HU,873,728,0.8339 +AM6XJQNLFEV4J,863,745,0.8633 +A1O71XNV203T5P,858,546,0.6364 +A2B6YXMDWJ4VXN,854,712,0.8337 +A33I0A28TLIR6J,828,781,0.9432 +A11RQ0K5GQ3NJG,818,712,0.8704 +ASBG43I93VS4A,810,703,0.8679 +A36H75IU3Q97QS,788,559,0.7094 +A1KYZPQ0T7WECC,784,714,0.9107 +A2U7UDW9Y1WGWF,777,682,0.8777 +A12VYCG9CMKAFA,730,625,0.8562 +A3Q1WEJV1E4SMJ,726,621,0.8554 +A3OLY20VMA8SPJ,725,681,0.9393 +A1ECK1JDBPPNI4,680,490,0.7206 +AGQCDAB6EB6TI,678,527,0.7773 +A7D1G6VBRTJMJ,667,583,0.8741 +A2V3XARMPINRM8,660,639,0.9682 +A3I8V1SR4ZGLCI,660,429,0.6500 +A1F2YL9N7RGGBK,631,460,0.7290 +A351XBS4VDRLAW,628,447,0.7118 +A1807BJPF9KQGJ,623,481,0.7721 +A2UM71UROTV0ZA,604,396,0.6556 +A1RP7H6KLEB2D6,600,543,0.9050 +A10XLF9Z0J3HN0,600,448,0.7467 +A3U042Q64BVD6G,591,450,0.7614 +AM68B4JJI573,586,508,0.8669 +A2599EZFAW93DZ,585,553,0.9453 +A16XBYWL7K7XN0,580,417,0.7190 +ARYPBUQQB1HJ3,578,555,0.9602 +A284MIYRBSSI2J,566,545,0.9629 +A1N3QIWLGR6ZV6,502,351,0.6992 +A3YMV4L5PLL2V,500,479,0.9580 +A3UD3Z0MVKSLF3,492,382,0.7764 +A3F293Q71V7LXQ,485,353,0.7278 +AITAS2BC334WY,477,448,0.9392 +A1O2MLIV0P9ZKV,477,373,0.7820 +A22PT6K5XNIFLA,462,337,0.7294 +A3CWVU18V57686,455,412,0.9055 +A1XY37GWORQFE,447,356,0.7964 +ABTQ0YV8MB0NL,444,384,0.8649 +A2W5F4NJT27X57,437,335,0.7666 +A1VISMPNXEK7Q3,437,331,0.7574 +AWGGLWWAXQGN0,435,365,0.8391 +A3O5ICTUN0AMMI,432,367,0.8495 +A2GOUKG8MLUCL6,430,287,0.6674 +ARBNW8MOV2Z4J,430,304,0.7070 +A2GT3AN1AONTKJ,428,325,0.7593 +A2JKGAWYEHJ18S,426,258,0.6056 +A1RQST9UG72B9D,415,367,0.8843 +A1GT7LF6A7RDO3,409,284,0.6944 +A9TWYMWKN8Z9M,403,303,0.7519 +A3V5PO5H524GGT,394,355,0.9010 +A3PO2JR0Z93YLO,378,326,0.8624 +A29LBPYZML62N8,368,303,0.8234 +A1DN17VUIDE1HT,367,249,0.6785 +A2ABHXG2PEW6FW,360,346,0.9611 +A1OBA2OY9UKI69,356,247,0.6938 +ARTQWWNFA7IOD,354,298,0.8418 +A3GI74TV4G46NK,347,274,0.7896 +A3700C6DDQACAF,345,268,0.7768 +A1E8TZHMLQMG4L,340,305,0.8971 +A1DDWUJ5R357SW,333,233,0.6997 +A2L7F18WKNN5D,312,277,0.8878 +A1JBN3GFY9XB3U,308,236,0.7662 +AB91OPDEOAWGJ,300,288,0.9600 +A152WUN3TZIFPG,299,195,0.6522 +A2UZP2FRACKPK1,298,277,0.9295 +A3DRKBHY7WF65Z,295,204,0.6915 +A8C8T21U4O229,294,157,0.5340 +A19HN15YVY9E5I,286,241,0.8427 +A160C751AAPJOO,283,260,0.9187 +A16SZ4YVTOTAJJ,276,184,0.6667 +A26211PR4VJSYZ,273,247,0.9048 +A2XTTYZIE0I9LC,272,201,0.7390 +ABC7VAAL8O01O,272,194,0.7132 +A2655M3JDJSKI1,270,236,0.8741 +AAAPKKICN19YF,263,227,0.8631 +A3FEZ9R2N978CK,261,212,0.8123 +A131OURGHR3KFX,261,229,0.8774 +AZ7JV8HMGBGIR,260,203,0.7808 +AI9WUJHQVDAJR,254,197,0.7756 +A1ORNR8N4BVVRB,246,185,0.7520 +AXHDHGJRFHMRR,245,228,0.9306 +A315T7JQD2V1XZ,240,192,0.8000 +A2GPIHK6Z1A8F6,238,194,0.8151 +A2COVQ6VRDAVYG,234,167,0.7137 +AQR2JTPBB72WS,232,227,0.9784 +ABLKI4PH02WER,223,195,0.8744 +A3PYHRR0GPNMHM,220,218,0.9909 +A2S3HRZE7RE89S,215,157,0.7302 +A3JE60IF6QQS2L,214,165,0.7710 +AOAMTLMPOJ7P7,203,179,0.8818 +ACUA3D1ZUVZU3,202,182,0.9010 +A4E6U6HTRKGPM,201,179,0.8905 +AWGTBU27GNOYF,200,186,0.9300 +A34V8XSJV06JFY,195,161,0.8256 +A2MONDT2BU9BYA,195,169,0.8667 +A2JVCSQ9671GBW,193,178,0.9223 +AP4LB7P4K7M9L,186,149,0.8011 +A2NX92POGATSQU,184,141,0.7663 +A2S834OHCORO1W,184,172,0.9348 +A3URILKJNVKSC6,177,136,0.7684 +A1LO9EDDV5D7LM,177,116,0.6554 +A22PGWBCLQO277,174,153,0.8793 +A2EBRQ70UDVAU2,169,129,0.7633 +A2YDVX56BVBEP8,169,123,0.7278 +A1WGCUVQZ7ODGF,168,110,0.6548 +A2HSX08DWDYJU7,167,154,0.9222 +AZQWQKPSTAO,164,140,0.8537 +A2I68SNRG9QUY7,164,121,0.7378 +ALCWSAIQHCBCV,162,125,0.7716 +A1YI3I2KCAXRHQ,159,127,0.7987 +A3171TJN0M6YHQ,154,131,0.8506 +A3R5K7A8US5PDE,150,97,0.6467 +A1KXF2L2ZGQXJK,141,131,0.9291 +A3AHE81HVRXFCD,140,126,0.9000 +A38ER9Y038JJFD,140,138,0.9857 +A2N9H9BHCYDR,140,101,0.7214 +A5AP9GUKQUNPJ,140,95,0.6786 +A2UND26FA774L9,140,101,0.7214 +A3L26N6MNSU7BA,140,114,0.8143 +A39U0GKFMV1S0O,140,118,0.8429 +A3404IIFIN1T2H,140,103,0.7357 +AA1IM0SAQ3XFM,140,140,1.0000 +A2G5UCB3HJENIR,140,111,0.7929 +A1LN8392JHDGL5,138,125,0.9058 +AF642VCALD1MS,137,114,0.8321 +A3FPAV06DR0VWR,136,124,0.9118 +A112Z00MCKPS6F,136,117,0.8603 +AQ310YX22A2T2,135,126,0.9333 +A2THKOWH7892FP,126,102,0.8095 +A1RTMB1V9GK7HM,124,109,0.8790 +A1HA19WCH62BO3,124,120,0.9677 +A205WBOO6VB6WP,123,109,0.8862 +A23B3KN37PYNDF,120,120,1.0000 +A3HYU8WSD2QPTK,120,110,0.9167 +AZMQZIFTRV6ZF,120,99,0.8250 +A23FQY0N3HQZ0Y,120,92,0.7667 +A1QO9CJ6KFDWQJ,120,84,0.7000 +A23HL48WA6J7WR,120,96,0.8000 +A35G1L6FBGTGDW,119,99,0.8319 +AVFCPG1MM0ZZ4,116,115,0.9914 +A3AYHESLQSDY5T,114,93,0.8158 +AK9GL4SZ2RXF6,114,82,0.7193 +A2IXXN84YF5S48,112,96,0.8571 +ARSYPIB62OGI8,110,108,0.9818 +AZTAPCOD2Y512,110,82,0.7455 +AGMJRRLCQ63YX,110,87,0.7909 +A335M3FZJKR2NF,109,80,0.7339 +A3MDTRJTDIDNX,108,99,0.9167 +A2NY36EXI40OJV,108,100,0.9259 +A2KDWBYIB444C2,105,101,0.9619 +A376G1BHIGNA85,105,78,0.7429 +A3AFVXIRCJ7794,105,76,0.7238 +A3SA9LY6RXKFOI,100,92,0.9200 +A1KKY370WV8Z2Z,98,85,0.8673 +A5U2H7ESAXLEH,92,61,0.6630 +A3HWOXJTKFRYPA,89,62,0.6966 +A3370LDRBVZ48T,88,74,0.8409 +A3W5DPQRF08VG5,85,44,0.5176 +A3KVIZLKSASAES,84,78,0.9286 +A1YSDHTRI6QMNA,84,61,0.7262 +A1GM9I79BEONVI,84,69,0.8214 +A2MTRSPP07E2OY,80,61,0.7625 +A10E5WEL6AI08W,80,47,0.5875 +A4LR95YJIE5IK,78,68,0.8718 +A2E5578HI0Z7GM,78,56,0.7179 +A1BXXN8VH29FQ1,77,63,0.8182 +A2K4H1GBT2BUBT,77,55,0.7143 +A22S7SM9575Y6L,75,50,0.6667 +A2A8S4DKZITZDV,72,62,0.8611 +A19GO3CWPT0AXQ,72,72,1.0000 +A26XG9S2VM1JG1,71,51,0.7183 +A26H0VJX43ABUC,70,30,0.4286 +AQIGIEPFC5IWT,70,44,0.6286 +A3ENZZK73S5C9Z,70,44,0.6286 +A22W8G61RFRSXV,70,63,0.9000 +A1XWQ3XI0GVRYG,70,42,0.6000 +A1VPQ3PG2ZNIJN,70,38,0.5429 +A1J68X18JL0EXY,70,52,0.7429 +A34KEFUJ6YBIBC,70,62,0.8857 +A2GREARJHXCC1S,70,65,0.9286 +A3G01OPC6AANGR,70,69,0.9857 +A3MWJGJYGPQMDH,70,64,0.9143 +A218UVWDK1BZ0K,70,59,0.8429 +A3OV88BGLY552N,68,53,0.7794 +A28LG4BVBNFE88,68,52,0.7647 +A2TSG6O8FN83XG,66,60,0.9091 +A2CRT2Y3ZQQP8,62,42,0.6774 +A1WUFTLWVWX8BU,60,53,0.8833 +A28GJANLU1IV3X,60,56,0.9333 +A190D26EGU3604,60,44,0.7333 +A1TNF9Q4I9MJ8B,60,39,0.6500 +A9380GKZM50GU,60,57,0.9500 +A1OZMR9ZDILT97,60,24,0.4000 +A310C05L3L2V52,56,51,0.9107 +A39A32QMDB9QC2,55,47,0.8545 +A3T3N4F3J22LG3,55,41,0.7455 +A3JEBV791DHRZL,52,52,1.0000 +A16TN9IF4J115Q,50,46,0.9200 +A2EGHTES84V3RD,49,36,0.7347 +A2LYCHXS3CLKZR,49,41,0.8367 +AL91A2A0E07SR,48,40,0.8333 +A2Y0HZSZTQAVDW,45,40,0.8889 +A3HLL9X0R84HHH,44,42,0.9545 +AUHR4P3FFMBBO,44,34,0.7727 +A2F2MA8JDO0ETG,44,34,0.7727 +ATDPBK7CL44VW,44,36,0.8182 +A3TQB5QGNAFIHS,43,35,0.8140 +A1Q5JN3I3PWOT7,42,34,0.8095 +A2TAWQW3SP0NXW,40,22,0.5500 +AAISLVE5U7EPM,40,40,1.0000 +A1UAC2OZSP7WZG,40,38,0.9500 +A2F97GEQ7ZZ1BO,40,35,0.8750 +A2E33ZOGGH8T1,37,30,0.8108 +A1DIU7FKL9G7A7,36,26,0.7222 +A2Z4SX6MOPIZUZ,36,33,0.9167 +A27CVQSDPESFN6,33,28,0.8485 +A1VNJ8O5VH5WOY,32,28,0.8750 +A1MNEFM7KEQ756,30,27,0.9000 +A2V2OIEYAWJSTV,30,28,0.9333 +A3CERM4XO4F0RX,30,10,0.3333 +A1Z16XZN9X4QKW,30,10,0.3333 +A1NUQE481FNPZV,30,18,0.6000 +A1P9AVYDP4GI76,30,23,0.7667 +A28XN4LO3H14VG,30,7,0.2333 +A3MLZYWTWDPISI,30,27,0.9000 +A1QJKZR8FXJS7A,30,13,0.4333 +A2TEFH053AA2PB,30,18,0.6000 +A4R795RSCUU4I,30,19,0.6333 +A1QOYLUFHS5ZID,30,22,0.7333 +A1DB491REDJH86,30,10,0.3333 +A133R2FFFAX4X3,30,27,0.9000 +A3EVXA7XH9RTK4,30,19,0.6333 +A3NK62VTTBBL2S,30,14,0.4667 +A3M00AM1PKY1X5,30,27,0.9000 +A2XQ01SU9Q5S7H,30,16,0.5333 +ALRO7C14ZHI79,30,11,0.3667 +ASTW16FMHN8W7,30,22,0.7333 +A3U9K4GQEFF2CU,30,13,0.4333 +A2ACTLP33YPKIM,30,29,0.9667 +A3P6QMO0805I8F,30,28,0.9333 +A2E1PL4A2EQNNB,30,18,0.6000 +A1XPHEIG43TNAK,30,19,0.6333 +A8JT6BED7EL6D,30,26,0.8667 +A2JIQ4HENWPZ7P,30,16,0.5333 +A3LQEHAP40NPF,30,7,0.2333 +A3MYIJMVK79WXH,30,14,0.4667 +A2NDG5FO7BCAE5,30,30,1.0000 +A1P557XDQ2SID7,30,22,0.7333 +AXKXVUS9RU633,30,27,0.9000 +ADE24F2LKZ61M,30,25,0.8333 +AKLPPGSTDS3DF,28,19,0.6786 +A6MP63IQIESJE,28,26,0.9286 +A15QVZHXJYWO31,28,20,0.7143 +AVD2UYTGBHBV6,28,22,0.7857 +A1YYSP9V06VKFF,27,24,0.8889 +A3DWMMNEZJ07GL,27,14,0.5185 +A1OQ4WMWA6WCUV,27,20,0.7407 +A3XNJW1NJ13Y9,27,16,0.5926 +A1WFMSRVEVM859,25,25,1.0000 +A2U4DQEDXF21LE,25,20,0.8000 +A3IAZNPRZZYE0X,24,16,0.6667 +A2P8ZQJMDB6X9U,21,19,0.9048 +AR4ZC7W24ZSIS,21,14,0.6667 +A2NQZ2QIHRXC8A,21,19,0.9048 +A1VACFTIOQSLJV,21,14,0.6667 +A1BJ4MMYJK34MI,20,7,0.3500 +ASQMLIQ5V977T,20,10,0.5000 +A18RE5R6EFUXNA,19,18,0.9474 +AZS2F58J4AO29,16,16,1.0000 +A2MAWXC6AL9N7F,16,11,0.6875 +AOX1AK6ABQMCX,15,13,0.8667 +A2VMQ3OKPH6O98,15,13,0.8667 +A2BS3X3S0BBX83,14,14,1.0000 +AJWPBPDBA3NAX,12,12,1.0000 +A2IHW1YP9E719P,12,8,0.6667 +AV80YFI6XESM3,12,10,0.8333 +A1HHP5MPUQ71AD,12,10,0.8333 +AQWVH7BKL5NEZ,10,9,0.9000 +A13IOL24C8KF3Y,10,9,0.9000 +A35ZVN8ZE9M60P,10,8,0.8000 +A3RDY4TFHRI1MQ,9,8,0.8889 +AC92JOAQIRPU2,8,8,1.0000 +A3D7P3GJVOC3AF,8,8,1.0000 +A2NPZQ3U80LPVO,8,6,0.7500 +A1PU2YNAJ7YXWH,7,4,0.5714 +A1F46UWB4WTODZ,7,4,0.5714 +AZ0KS5UTO3EJ2,7,5,0.7143 +A3T8SYDFYUEFMA,6,6,1.0000 +A1NOJ4SWW8WBJU,5,5,1.0000 +A1AFLUR3ASLQMN,4,4,1.0000 +A76L63HZDWZSR,2,2,1.0000